/*$(document).ready(function(){
        
//Hide div w/id commentsform
$("#commentsform").css("display","none");
// Add onclick handler to checkbox w/id checkme
$("#checkme").click(function(){
        
// If checked
 if ($("#checkme").is(":checked"))
{
   //show the hidden div
   $("#commentsform").slideDown("normal");
}
 else
{      
   //otherwise, hide it 
   $("#commentsform").slideUp("normal");
}
});
   
});
*/

$(document).ready(function(){


//Hide div w/id commentsform
$("#commentsform").css("display","none");

	$("#clickme").click(function(){
	  $("#commentsform").slideToggle("slow");
	  //$(this).toggleClass("active");
	});

});

