$(document).ready(function() {

	$(window).bind("unload", function() {
	
});

	$("body").hide();
	$("body").fadeIn(500);

	$("a.fade").click(function(event){
		event.preventDefault();
		linkLocation = this.href;
		$("body").fadeOut(500, redirectPage);
	});

	function redirectPage() {
		window.location = linkLocation;
	}
	
});
