$(document).ready(function(){
 
$(".badge-popup a").hover(function() {
$(this).next("em").stop(true, true).animate({opacity: "show", left: "-171", top: "-10"}, "slow");
}, function() {
$(this).next("em").animate({opacity: "hide", left: "-171", top: "-40"}, "fast");
});
 
});
