$(document).ready(function(){
 
	$(".rss-popup a").hover(function() {
	$(this).next("em").stop(true, true).animate({opacity: "show", top:"-290", left:"70"}, "slow");
	});
	$(".rss-popup em").click(function() {
	$(this).animate({opacity: "hide", right: "70"}, "slow");
	});
 
});
