function introHalt(){
setTimeout(introOpen, 1000);
}
function introOpen(){
$("#IntroShow").fadeIn("slow"); 
}
function introClose(){
$("#IntroShow").fadeOut("slow"); 
}

$(document).ready(function() {	
		//Get the screen height and width
		var maskHeight = $(document).height();
		var maskWidth = $(window).width();
		
		
		$(window).resize(function(){
 			maskHeight = $(body).height();
			maskWidth = $(window).width();
			$('#IntroShow').css({'width':maskWidth,'height':maskHeight});
			
		});

		//Set heigth and width to mask to fill up the whole screen
		$('#IntroShow').css({'width':maskWidth,'height':maskHeight});
		
});


