$(document).ready(function() { 
$(".allcomments").hide();
var hidden = "true";
	$("a.commentshow").click(function() {
		var thislinkraw = $(this).attr("id");
		thislink = thislinkraw.substring(0,1);
		thiscontainer = "#commentcontainer" + thislink;
		if(hidden=="false"){
			$(thiscontainer).hide("slow");
			hidden = "true";
		}else{
			$(thiscontainer).show("slow");
			hidden = "false";
		}
		
	});
});