$(document).ready(function() {
	
	$(window).bind("unload", function() {
	});

	$("#bg").css("display", "none")

	$("#bg").hide();

    $("#bg").fadeIn(2000);
	
    
	$("a.transition").click(function(event){
		event.preventDefault();
		linkLocation = this.href;
		$("#bg").fadeOut(1000, redirectPage);
		<!--$("#bg").fadeOut(1000);
		<!--$("#top").fadeOut(3000, redirectPage);-->
	});
		
	function redirectPage() {
		window.location = linkLocation;
	}
	
});

