	$(document).ready(function(){
		$('#topo img').css({opacity: 0});
		$('h1').css({opacity: 0});

	});
	
	
	$(window).load(function(){
		$('#topo img').animate({opacity: 1}, 1500);
		$('h1').animate({opacity: 1}, 4000);
	});
