jQuery(document).ready(function(){
	$("#elsewhere ul li").hover(
		function(){
			// var iconName = $(this).find("img").attr("src");
			// var origen = iconName.split("x.")[0];
			// $(this).find("img").attr({src: "" + origen + "o.gif"});
			$(this).find("span").attr({
				"style": 'display:inline'
			});
			$(this).find("span").animate({opacity: 1, top: "-49"}, {queue:false, duration:0});
		}, 
		function(){
			// var iconName = $(this).find("img").attr("src");
			// var origen = iconName.split("o.")[0];
			// $(this).find("img").attr({src: "" + origen + "x.gif"});
			$(this).find("span").animate({opacity: 0, top: "-49"}, {queue:false, duration:25}, "linear",
				function(){
					$(this).find("span").attr({"style": 'display:none'});			
				}
			);
		});
});
