jQuery(document).ready(function(){

	jQuery(".add_comments_header").click(function(){
	  jQuery("#add_comment_form").slideToggle("slow");
	});

	jQuery(".comments_header").click(function(){
	  jQuery("#commentlist").slideToggle("slow");
	});


});