$(document).ready(function() {		$("body").css("display", "none");    $("body").fadeIn();    	$("#mainNav a").click(function(event){		event.preventDefault();		linkLocation = this.href;		$("body").fadeOut(redirectPage);			});			function redirectPage() {		window.location = linkLocation;	}	});
