$(document).ready(function(){

	$("#comment_form_button").click(function(event){
		event.preventDefault();
		showHide($("#comment_form"));
	});
	
	$("#comment_form").addClass("hidden")

});