// JavaScript Document
$(document).ready(function(){
 
$(".rss-popup a").hover(function() {
$(this).next("#b1").stop(true, true).animate({opacity: "show", top: "-40"}, "slow");
}, function() {
$(this).next("#b1").animate({opacity: "hide", top: "-50"}, "fast");
}); 

$(".rss-popup a").hover(function() {
$(this).next("#b2").stop(true, true).animate({opacity: "show", top: "-40"}, "slow");
}, function() {
$(this).next("#b2").animate({opacity: "hide", top: "-50"}, "fast");
}); 

$(".rss-popup a").hover(function() {
$(this).next("#b3").stop(true, true).animate({opacity: "show", top: "-40"}, "slow");
}, function() {
$(this).next("#b3").animate({opacity: "hide", top: "-50"}, "fast");
}); 

$(".rss-popup a").hover(function() {
$(this).next("#b4").stop(true, true).animate({opacity: "show", top: "-40"}, "slow");
}, function() {
$(this).next("#b4").animate({opacity: "hide", top: "-50"}, "fast");
}); 








});
