$(document).ready(function(){
 
	$("li.tooltip1 a").hover(function() {
		$(this).next("em").stop(true, true).animate({opacity: "show", top: "-40px"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "-60px"}, "fast");
	});
	
	$("li.tooltip2 a").hover(function() {
		$(this).next("em").stop(true, true).animate({opacity: "show", top: "-40px"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "-60px"}, "fast");
	});
	
	$("li.tooltip3 a").hover(function() {
		$(this).next("em").stop(true, true).animate({opacity: "show", top: "-40px"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "-60px"}, "fast");
	});
 
});