function add_podkom(id){
	$("#komentarz_form").hide();
	$("#podkomentarz_form").slideDown();
	$("#podkom_parent_id").val(id);
	$('html, body').animate({scrollTop: $("#podkomentarz_form").offset().top}, 2000);
}
function back_to_kom(){
	$("#podkomentarz_form").hide();
	$("#komentarz_form").slideDown();
	$('html, body').animate({scrollTop: $("#komentarz_form").offset().top}, 2000);
}
// perform JavaScript after the document is scriptable.
$(function() {
	// setup ul.tabs to work as tabs for each div directly under div.panes
	$("div.tabs").tabs("div.panes > div");
	$("#dod_co").mouseover(function () {
		$(this).css("height","auto");
	});
	$("#dod_co").mouseout(function () {
		$(this).css("height","14px");
	});
	$("#praca").mouseover(function () {
		$(this).css("height","auto");
	});
	$("#praca").mouseout(function () {
		$(this).css("height","14px");
	});
});

