function showHome(){
	$("#blog").animate(
		{
			opacity: 0
		},
		500,
		function(){
			$.ajax(
				{
					url: '/',
		 			success: function(response){
		 				$("#blog").html(response);
		 				Cufon.replace('h3');
		 				Cufon.replace('h2');
		 				Cufon.replace('h1');
		 				$("#blog").animate({
							opacity: 1
						},500);
						pageTracker._trackPageview("/" );
		 			},
		 			dataType: "html"
		 		}
		 	);
		 }
	);
	return false;
}

if(window.location.hash != ""){
	
	document.location = window.location.hash.substr(1);
}
