/**
 * @author Intik
 */

$(document).ready(function() {
	var header = $('#reply .header').css('margin-bottom', 10).css('padding', 5);
	var link = $('<a href="#">[ Přidat příspěvek ]</a>');
	var plain = $('#reply .header span').before(link).hide();
	var panel = $('#reply .panel').hide();
	$(':submit').before('<input type="reset" value="Zrušit" />');
	
	$('a[rel*=reply]').each(function() {
		$(this).click(function() {
			$('#form_diskuze').attr('action', 'http://www.bluesberry.cz/bb.php/diskuze/odpoved' + this.href.substr(this.href.lastIndexOf('/')));
			link.click();
			plain.html('Odpověď na příspěvek od: <strong>' + $(this).parent().parent().find('span:last').text() + '</strong>');
		});
	});	
		
	link.click(function() {
		header.css('margin-bottom', 0);
		plain.text('Přidat příspěvek').show();
		link.hide();
		panel.slideDown();
		$(':reset').click(function() {
			panel.slideUp(function() {
				header.css('margin-bottom', 10);
				plain.hide();
				link.show();
			});
		});
	});
	
});