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