$(document).ready(function(){
 
 
	$(".iconPopup a").hover(function() {
	$(this).next("em").stop(true, true).animate({opacity: "show", bottom: "-50"}, "slow");
	}, function() {
	$(this).next("em").animate({opacity: "hide", bottom: "-40"}, "fast");
	});
 
});

