
jQuery(document).ready(function(){$("li.social").hover(function(){var iconName=$(this).find("img").attr("src");var origen=iconName.split("x.")[0];$(this).find("img").attr({src:""+origen});$(this).find("span").attr({"style":'display:inline'});$(this).find("span").animate({opacity:1,left:"40"},{queue:false,duration:400});},function(){var iconName=$(this).find("img").attr("src");var origen=iconName.split("o.")[0];$(this).find("img").attr({src:""+origen});$(this).find("span").animate({opacity:0,left:"50"},{queue:false,duration:400},"linear",function(){$(this).find("span").attr({"style":'display:none'});});});});
