jQuery.preloadImages = function()
{
	for(var i = 0; i<arguments.length; i++)
	jQuery("<img>").attr("src", arguments[i]);
}
jQuery.preloadImages("/lemkin_images/I.jpg", "/lemkin_images/II.jpg", "/lemkin_images/III.jpg", "/lemkin_images/IV.jpg", "/lemkin_images/V.jpg", "/lemkin_images/VI.jpg", "/lemkin_images/VII.jpg","/lemkin_images/Io.jpg", "/lemkin_images/IIo.jpg", "/lemkin_images/IIIo.jpg", "/lemkin_images/IVo.jpg", "/lemkin_images/Vo.jpg", "/lemkin_images/VIo.jpg", "/lemkin_images/VIIo.jpg");

jQuery(document).ready(function(){
	
	$("#iconbar li a").hover(
		function(){
	//		var iconName = $(this).children("img").attr("src");
	//		var origen = iconName.split(".jpg")[0];
	//		$(this).children("img").attr({src: "" + origen + "o.jpg"});
			$(this).css("cursor", "pointer");
			$(this).animate({ width: "230px" }, {queue:false, duration:"normal"} );
			$(this).children("span").animate({opacity: "show"}, "fast");
		}, 
		function(){
	//		var iconName = $(this).children("img").attr("src");
	//		var origen = iconName.split("o.")[0];
	//		$(this).children("img").attr({src: "" + origen + ".jpg"});		
			$(this).animate({ width: "29px" }, {queue:false, duration:"normal"} );
			$(this).children("span").animate({opacity: "hide"}, "fast");
		});
});

