jQuery(document).ready(function() {
		
		
	$("#navbar a").hover(function() {
		var width = $(this).width();
		var lm = -((180-width)/2)
		$(this).next("em").animate({opacity: "show", top: "-55", left: lm}, "1000")
	}, function() {
		var width = $(this).width();
		var lm = -((180-width)/2)
		$(this).next("em").animate({opacity: "hide", top: "-120", left: lm-80}, "fast").animate({left: "80"}, "10000");
	});


});

