$(document).ready(function(){

	$("div.commentWrapper").hide();
	
	$(".toggleComment a").click( function(){
		$("div.commentWrapper").toggle();
	});
});
