jQuery.preloadImages = function(){for(var i = 0; i<arguments.length; i++)jQuery("<img>").attr("src", arguments[i]);}jQuery.preloadImages("key.gif", "keyo.gif", "rss.gif", "rsso.gif", "sel.gif", "selo.gif");jQuery(document).ready(function(){jQuery("#iconbar li a").hover(function(){var iconName = jQuery(this).children("img").attr("src");var origen = iconName.split(".gif")[0];jQuery(this).children("img").attr({src: "" + origen + "o.gif"});jQuery(this).css("cursor", "pointer");jQuery(this).animate({ width: "140px" }, {queue:false, duration:"normal"} );jQuery(this).children("span").animate({opacity: "show"}, "fast");}, function(){var iconName = jQuery(this).children("img").attr("src");var origen = iconName.split("o.")[0];jQuery(this).children("img").attr({src: "" + origen + ".gif"});			jQuery(this).animate({ width: "24px" }, {queue:false, duration:"normal"} );jQuery(this).children("span").animate({opacity: "hide"}, "fast");});});
