jQuery(document).ready(function(){
	$("#iconbar li").hover(
		function(){
			var iconName = $(this).find("img").attr("src");
			var origen = iconName.split("small.")[0];
			$(this).find("img").attr({src: "" + origen + "big.png"});
			$(this).find("span").attr({
				"style": 'display:inline'
			});
			$(this).find("span").animate({opacity: 1, top: "120"}, {queue:false, duration:200});
		}, 
		function(){
			var iconName = $(this).find("img").attr("src");
			var origen = iconName.split("big.")[0];
			$(this).find("img").attr({src: "" + origen + "small.png"});
			$(this).find("span").animate({opacity: 0, top: "-30"}, {queue:false, duration:200}, "linear",
				function(){
					$(this).find("span").attr({"style": 'display:none'});			
				}
			);
		});
});

