// JavaScript Document

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

$(document).ready(function(){
 
$(".rss-popup_twitter a").hover(function() {
$(this).next("em").stop(true, true).animate({opacity: "show", top: "-45"}, "slow");
}, function() {
$(this).next("em").animate({opacity: "hide", top: "-50"}, "fast");
});
 
});

$(document).ready(function(){
 
$(".rss-popup_facebook a").hover(function() {
$(this).next("em").stop(true, true).animate({opacity: "show", top: "-45"}, "slow");
}, function() {
$(this).next("em").animate({opacity: "hide", top: "-50"}, "fast");
});
 
});

$(document).ready(function(){
 
$(".rss-popup_flickr a").hover(function() {
$(this).next("em").stop(true, true).animate({opacity: "show", top: "-45"}, "slow");
}, function() {
$(this).next("em").animate({opacity: "hide", top: "-50"}, "fast");
});
 
});

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