$(document).ready(function(){  
   

$(".rss-popup a").hover(function() {
$(this).next("span").stop(true, true).animate({opacity: "show", top: "0"}, "fast");
}, function() {
$(this).next("span").animate({opacity: "hide", top: "0"}, "fast");
});
   
 }); 
