$(document).ready(function()
{
    $('#header').hide();
    $('#header').ready(function(){
       
        $('#header').fadeIn(600,null);
    });
    $('#slider').hide();
    $('#menu').hide();
    $('.doors').hide();
    $('#content_top').hide();
    $('#allfooter').hide();
    $('#slider').fadeIn(500,null);  
    $('.doors').fadeIn(400,function()
    {
        
        $('#menu').fadeIn(300,function(){
            
            $('#content_top').fadeIn(200,function(){
                
                $('#allfooter').fadeIn(100,null);
            });
        });
        
    });
    
   }); 
