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


