jQuery.preloadImages = function()
{
	for(var i = 0; i<arguments.length; i++)
	jQuery("<img>").attr("src", arguments[i]);
}

 jQuery.preloadImages("http://www.lastguru.com/template/lastguru/images/home.png");
jQuery.preloadImages("http://www.lastguru.com/template/lastguru/images/home_hover.png");
jQuery.preloadImages("http://www.lastguru.com/template/lastguru/images/services.png");
jQuery.preloadImages("http://www.lastguru.com/template/lastguru/images/services_hover.png");
jQuery.preloadImages("http://www.lastguru.com/template/lastguru/images/products.png");
jQuery.preloadImages("http://www.lastguru.com/template/lastguru/images/products_hover.png");
jQuery.preloadImages("http://www.lastguru.com/template/lastguru/images/portfolio.png");
jQuery.preloadImages("http://www.lastguru.com/template/lastguru/images/portfolio_hover.png");
jQuery.preloadImages("http://www.lastguru.com/template/lastguru/images/careers.png");
jQuery.preloadImages("http://www.lastguru.com/template/lastguru/images/careers_hover.png");
jQuery.preloadImages("http://www.lastguru.com/template/lastguru/images/blogs.png");
jQuery.preloadImages("http://www.lastguru.com/template/lastguru/images/blogs_hover.png");
jQuery.preloadImages("http://www.lastguru.com/template/lastguru/images/affiliates.png");
jQuery.preloadImages("http://www.lastguru.com/template/lastguru/images/affiliates_hover.png");
jQuery.preloadImages("http://www.lastguru.com/template/lastguru/images/partners.png");
jQuery.preloadImages("http://www.lastguru.com/template/lastguru/images/partners_hover.png");
jQuery.preloadImages("http://www.lastguru.com/template/lastguru/images/contact.png");
jQuery.preloadImages("http://www.lastguru.com/template/lastguru/images/contact_hover.png");



jQuery(document).ready(function(){
	
	$("#iconbar li img").hover(
		function(){
			var iconName = $(this).attr("src");
			var origen = iconName.split(".")[0];
			$(this).attr({src: "" + origen + "_hover.png"});
			$(this).parent().parent().animate({ width: "120px" }, {queue:false, duration:"normal"} );
			$(this).parent().parent().find("span").animate({opacity: "show"}, "fast");
		}, 
		function(){
			var iconName = $(this).attr("src");
			var origen = iconName.split("_hover.")[0];
			$(this).attr({src: "" + origen + ".png"});			
			$(this).parent().parent().animate({ width: "80px" }, {queue:false, duration:"normal"} );
			$(this).parent().parent().find("span").animate({opacity: "hide"}, "fast");
		});
});