$(document).ready(function() {
	$('a.reply').click(
		function() {
			//alert($('#parentid').val());
			id = $(this).attr('id');
			$('#parentid').val(id);
			title = $('#comment-'+id+' h4').html();
	
			$('#comment_form_title').html('Odpowiedz na komentarz "'+title+'"');
			$('#comment_title').val('Re: '+title);
			$('#username').focus();
		}
	);
	
	

	
}
);
