//<![CDATA[    
	$(window).load(function(){
		//$("#dayMarker").html("asdf");		
		
	});
	// When the page is ready
	$(document).ready(function(){    
		if(self.document.location.hash == "#respond") {
			$("#commentSection").show("slow");
			$("#singlePost .commentLink a").hide();
		}
		if(self.document.location.hash == "#comments") {
			$("#commentSection").show("slow");
			$("#singlePost .commentLink a").hide();
		}
		$("#singlePost .commentLink a").click(function(event){  
			$(this).hide();
			$("#commentSection").show("fast");
			setTimeout('$.scrollTo("#commentSection", 1500)', 500);
			event.preventDefault();
	   	}); 
		
		
   	});          

    


 //]]>