$(document).ready(function() { 

	// Wait for .5 seconds then fade mask
	setTimeout(function(){
 		
 		$('#mask').fadeOut(750);
 		
	}, 200);
	
});