

$(document).ready(function(){
	
	$('comment-form').hide("slow");

	$("toggle-comment-form").click(function(){
	   
	   if($('comment-form').style.display=='block')
	   {
	   		$('comment-form').hide("slow");
	   }else{
	   		$('comment-form').show("slow");
	   }
	   
	   
	   return false;
	});
	
});