// JavaScript Document
		 jQuery(document).ready(function(){
		$("#iconbar li img").hover(
		function(){
		var iconName = $(this).attr("src");
		var origen = iconName.split(".")[0];
		$(this).attr({src: "" + origen + "o.png"});
		 
		$(this).parent().parent().animate({ width: "180px" }, {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 + ".png"});
		 
		$(this).parent().parent().animate({ width: "57px" }, {queue:false, duration:"normal"} );
		$(this).parent().parent().find("span").animate({opacity: "hide"}, "fast");
		});
		});

