init = function() {
   
    // fade container in (3 seconds)
    setTimeout(function() {
        $('body.home div.hideme').fadeIn('slow');
    }, 400);
    
}

$(document).ready(init);