 $(document).ready(function(){
							
	var show4 = $.cookie('show4');
	

	 
	 
	 
	 if (show4 == null || show4 == 0 ) {						
		$("#comments").hide();
	} 
	 
	 $("#comments_text a").click(function() {
                $("#comments").slideToggle("slow");
				if (show4 == 1) {
					show4 = 0;
				} else {
					show4 = 1;	
				}
				
				$.cookie('show4', show4, { expires: 7 });
				return false;
				
        });
  });
