
$(document).ready(function(){

    $("#content").stop().animate({ 
        opacity: 0

      }, 0 );
    
      $("#header").stop().animate({ 
        opacity: 0

      }, 0 );
      
      $("#header").stop().animate({ 
        opacity: 1

      }, 2000 );
      
      $("#content").stop().animate({ 
        opacity: 1

      }, 2000 );
      

 });
 

