// JavaScript Document
$(document).ready(function(){
	
	$(this).delay(200,function(){
		//Show the elements	
		$("#header").stop().animate({top:'0px'}, {queue:false, duration:1000, easing: 'easeInOutExpo'});
    });
	
	$(this).delay(1100,function(){
				$("#footer_fade").fadeIn(3000);
	});
	
});
