
jQuery(document).ready(function(){
    setTimeout(function () { jQuery("#page-header-text h1").animate({ 
        paddingLeft:"0px"
      }, 1000 );
     }, 750);
     
    setTimeout(function () { 
        jQuery("#page-content-left-wrapper").fadeIn("slow");
    }, 2000);
    setTimeout(function () { 
        jQuery("#page-maincontent-left-wrapper").fadeIn("slow");
    }, 3000);
    setTimeout(function () { 
        jQuery("#page-maincontent-right-wrapper").fadeIn("slow");
    }, 4000);
      
});

