jQuery(document).ready(function(){
	$("#iconbar li").hover(
		function(){
			var iconName = $(this).find("img").attr("src");
			var origen = iconName.split("x.")[0];
		//	var item1 = $('img.item-1')[0];
			$(this).find("img").attr({src: "" + origen + "o.png"});
			$(this).find("span").attr({
				"style": 'display:inline'
			});
			$(this).find("span").animate({opacity: 1, top: "90"}, {queue:false, duration:300});
		}, 
		function(){
		//	var item1 = $('img.item-1')[0];
			var iconName = $(this).find("img").attr("src");
			var origen = iconName.split("o.")[0];
			$(this).find("img").attr({src: "" + origen + "x.png"});
			$(this).find("span").animate({opacity: 0, top: "110"}, {queue:false, duration:300, complete: function(){
								$(this).attr({"style": 'display:none'});
							}
						}
			);
		});
});

