// JavaScript Document
$('document').ready(function(){
		
		
		
		setTimeout(function(){
		$("em").animate({opacity: "show", top: "40"}, 1000);
		//$("em").animate({opacity: "hide", top: "28"}, 2000);
			}, 2000);
		
		
		
		
		
				
	    $(".menu a").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "40"}, "slow");
		}
		//, function() {
		//$(this).next("em").animate({opacity: "hide", top: "28"}, "fast");
		//}
		);
		
		
})


