$(function() {	
	$("h1#logo").fadeIn(500, function(){
		$("div#eve").fadeIn(500, function(){
			$("div#pub").fadeIn(500, function(){
				$("div.others").fadeIn(500);
			});
		});	
	});
});
