jQuery(document).ready(function(){
	setTimeout('fadeIn()', 1000);
});

function fadeIn(){
	jQuery('h1#logo').fadeIn(1000);
};