$(document).ready(function() {	
	setTimeout(function() {  
		//Get the A tag
		var id = $(this).attr('href');
	
		//Get the screen height and width
		var maskHeight = $(window).height();
		var maskWidth = $(window).width();
	
		//Set heigth and width to mask to fill up the whole screen
		$('#mask').css({'width':maskWidth,'height':maskHeight});
		
		//transition effect		
		$('#mask').fadeIn(2000);	
        $('#wrap-page').animate({backgroundColor: "#fff",color: "#777"}, 2000);

        $('#flash-intro').hide();
        $('#intro-links').hide();
        $('#page').fadeIn(2000);
        $('#logo-bottom').fadeOut(450);
        $('body').fadeTo(2000,1, function () {
        	  $(this).css("background-color", "#2e2d2d");
        	});
        
		
	}, 31050);	
	//select all the a tag with name equal to modal
	$('a[name=site]').click(function(e) {

		//Get the A tag
		var id = $(this).attr('href');
	
		//Get the screen height and width
		var maskHeight = $(window).height();
		var maskWidth = $(window).width();
	
		//Set heigth and width to mask to fill up the whole screen
		$('#mask').css({'width':maskWidth,'height':maskHeight});
		
		//transition effect		
		$('#mask').fadeIn(2000);	
        $('#wrap-page').animate({backgroundColor: "#fff",color: "#777"}, 2000);
        $('#flash-intro').hide();
        $('#intro-links').hide();
        $('#page').fadeIn(2000);
        $('#logo-bottom').fadeOut(450);
        $('body').fadeTo(2000,1, function () {
        	  $(this).css("background-color", "#2e2d2d");
        	});

        
	});	
});
