$(document).ready(function(){
	$('#topleftart').fadeIn(750,function(){$('#bottomrightart').fadeIn(750, function() {$('#logo').fadeIn(1500);$('#logo').animate({left:'0px'},{queue:false,duration:1500});});});
	
	$('#logo').hover(
	function() {$(this).animate({bottom:'5px',left:'3px'},{queue:false,duration:250});},
	function() {$(this).animate({bottom:'0px',left:'0px'},{queue:false,duration:250});}
	);
	
});

