
$(document).ready(function() {
	
	if ((getCookie("sendCommentDivVisibility") == 0) || (getCookie("sendCommentDivVisibility") == null))
		$("div.sendCommentDiv").hide();

	$("a.sendCommentDivButton").bind("click", function(e){
		if ($("div.sendCommentDiv:first").is(":hidden")) 
		{
        	$("div.sendCommentDiv").slideDown("fast");
        	setCookie("sendCommentDivVisibility", "1");
      	} 
		else 
		{
        	$("div.sendCommentDiv").slideUp("fast");
        	setCookie("sendCommentDivVisibility", "0");
      	}
		//$("div.sendCommentDiv").slideToggle("slow");
		return false;
		})
});

