var posted=false;
$(document).ready(function(){
	$("#fabu").click(function(){
		$("#comment").fadeIn('slow');
		});
	$("#submit").click(function(){
         $.post('/fabu.php',{'title':$("#comment_content").val(),'text':$("#textarea1").val(),'r':$("#r").val()},function(data){
              $("#comment_succ").html(data);
              posted=true;
              $("#comment_succ").show();
              $("#comment_form").hide();
			  $("#text").hide();
              $("#yz").hide();
             });
         return false;
		});
	$("#lock").click(function(){
		$("#comment").fadeOut();
		if(posted==true)
			location.reload();
		});
});
