jQuery(document).ready(function(){
$("#iconbar li img").hover(
function(){
//var iconName = $(this).attr("src");
//var origen = iconName.split(".")[0];
//$(this).attr({src: "" + origen + "o.gif"});
 
$(this).parent().parent().animate({ width: "120px" }, {queue:false, duration:"normal"} );
$(this).parent().parent().find("span").animate({opacity: "show"}, "fast");
},
function(){
//var iconName = $(this).attr("src");
//var origen = iconName.split("o.")[0];
//$(this).attr({src: "" + origen + ".gif"});
 
$(this).parent().parent().animate({ width: "22px" }, {queue:false, duration:"normal"} );
$(this).parent().parent().find("span").animate({opacity: "hide"}, "fast");
});
});
