$(function() {
	var d=1000;
	$('#menu span').each(function(){
		$(this).stop().animate({
			'top':'0'
		},d+=250);
	});

				
	$('.nossaEsc').click(function() {
			$('#home').css('display','none');
			$('#content').css('display','block');
		});
	
	$('#menu > li').hover(
	function () {
		var $this = $(this);
		$('a',$this).addClass('hover');
		$('span',$this).stop().animate({'top':'60px'},300).css({'zIndex':'10'});
	},
	function () {
		var $this = $(this);
		$('a',$this).removeClass('hover');
		$('span',$this).stop().animate({'top':'0'},800).css({'zIndex':'-1'});
	}
);
});
