$(document).ready(function(){
	$(".tip a").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "30", left:"20"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "45", left:"20"}, "fast");
	});
});