$(document).ready(function() {
	
	$("#bg").hide();
	$("#cont").hide();

    $("#bg").fadeIn('250');
	$("#cont").fadeIn('250');
    
	$("a.fade").click(function(event){
		event.preventDefault();
		linkLocation = this.href;
		$("#bg").fadeOut(400, redirectPage);
		$("#cont").fadeOut(400);
	});
		
	function redirectPage() {
		window.location = linkLocation;
	}
	
});



