    $(function(){
	    
		$("#Animation").animate({opacity: 'show'}, 1000);
		
	    
	    $("html").mouseover(function() {
		    if($("body").attr("class")=="Off") {
			    $("body").removeClass("Off"); 
				
	            var documentWidth = $(document).width(); 
		
		        
		        if( documentWidth > 1000 ) {
	                var headerWidth = ((documentWidth-1000)/2)+1000;
		        } else {
	                var headerWidth = 1000;		
		        } 
		
		        $("#Header").css("width", headerWidth);
	            $("#Header").show("slide", 800);
		        $("#BiggerShadow").show("slide", 600);
				
                setTimeout(function() {				
				    $("#Box-1").animate({opacity: 'show'}, 600);
				}, 400);				         
                setTimeout(function() {				
				    $("#Box-2").animate({opacity: 'show'}, 600);	
				}, 800);
                setTimeout(function() {				
				    $("#Box-3").animate({opacity: 'show'}, 600);	
				}, 1200);
                setTimeout(function() {				
				    $("#Box-4").animate({opacity: 'show'}, 600);	
				}, 1600);
                setTimeout(function() {				
				    $(".Footer").animate({opacity: 'show'}, 600);	
				}, 300);				
            }			
		});
    });
