/**
 * JQuery Popup
 * 
 * By: Digital visions
 *
 * Url: http://www.dvq.co.nz/web-design/create-a-jquery-popup-bubble-effect/
 */

jQuery(document).ready(
	function(){
	jQuery(".rss-popup a").hover(
		function() {
			jQuery(this).next("em").stop(true, true).animate({opacity: "show", top: "30"}, "slow");
		}
		, 
		function() {
			jQuery(this).next("em").animate({opacity: "hide", top: "20"}, "fast");
		}
	);

});

