	$(document).ready(function(){
							   
			$(document).pngFix();
			
			$("#slider").easySlider({
				auto: true,
				controlsShow: false,
				pause: 5400,
				continuous: true
			});
			
			$("#iconbar li").hover(
			function(){
			var iconName = $(this).find("img").attr("src");
			var origen = iconName.split("1.")[0];
			
			$(this).find("img").attr({src: "" + origen + "2.jpg"});
			$(this).find("span").animate({opacity: "show", top: "-60"}, "normal");
			},
			
			function(){
			var iconName = $(this).find("img").attr("src");
			var origen = iconName.split("2.")[0];
			$(this).find("img").attr({src: "" + origen + "1.jpg"});
			$(this).find("span").animate({opacity: "hide", top: "-50"}, "fast");
			});
			
			
		});
	
		
		
		
		
		
