$(document).ready(function(){   
$(".wp-popup a").hover(function() {   
$(this).next("em").stop(true, true).animate({opacity: "show", top: "40"}, "slow");   //stop(true, true) will stop all current animations. The coordinates here is the location the image will travel from on mouseover.
}, function() {   
$(this).next("em").animate({opacity: "hide", top: "40"}, "fast"); //These coordinates are where the image will go when you mouseout
	});   
}); 

$(document).ready(function(){   
$(".rss-popup a").hover(function() {   
$(this).next("em").stop(true, true).animate({opacity: "show", top: "40"}, "slow");   //stop(true, true) will stop all current animations. The coordinates here is the location the image will travel from on mouseover.
}, function() {   
$(this).next("em").animate({opacity: "hide", top: "40"}, "fast"); //These coordinates are where the image will go when you mouseout
	});   
}); 

$(document).ready(function(){   
$(".fb-popup a").hover(function() {   
$(this).next("em").stop(true, true).animate({opacity: "show", top: "40"}, "slow");   //stop(true, true) will stop all current animations. The coordinates here is the location the image will travel from on mouseover.
}, function() {   
$(this).next("em").animate({opacity: "hide", top: "40"}, "fast"); //These coordinates are where the image will go when you mouseout
	});   
}); 

$(document).ready(function(){   
$(".twit-popup a").hover(function() {   
$(this).next("em").stop(true, true).animate({opacity: "show", top: "40"}, "slow");   //stop(true, true) will stop all current animations. The coordinates here is the location the image will travel from on mouseover.
}, function() {   
$(this).next("em").animate({opacity: "hide", top: "40"}, "fast"); //These coordinates are where the image will go when you mouseout
	});   
}); 
