// JavaScript Document

$(document).ready(function() {
    $("#cont").css("display", "none");
	
    $("#foot").css("display", "none");
	$('#cont').css('filter', 'alpha(opacity=0)'); 

    $("#cont").fadeIn(400);
	$("#facebook").fadeIn(400);
	$("#foot").fadeIn(400);

	$("a.transition").click(function(event){
		event.preventDefault();
		linkLocation = this.href;
		$("#cont").fadeOut(400, redirectPage);
		$("#foot").fadeOut(400);
	});

	function redirectPage() {
		window.location = linkLocation;
	}
});
