// JavaScript Document
/*
jQuery.preloadImages = function(){
  for(var i = 0; i<arguments.length; i++)  {
    jQuery("<img>").attr("src", arguments[i]);
  }





}
$.preloadImages(
"grafica/template/home-modificata_r5_c12_r5_c12.jpg", 
"grafica/template/home-modificata_r5_c12_r5_c32.jpg",
"grafica/template/home-modificata_r5_c12_r5_c52.jpg",
"grafica/template/home-modificata_r5_c12_r5_c82.jpg",
"grafica/template/home-modificata_r5_c12_r5_c1.jpg",
"grafica/template/home-modificata_r5_c12_r5_c3.jpg",
"grafica/template/home-modificata_r5_c12_r5_c5.jpg",
"grafica/template/home-modificata_r5_c12_r5_c8.jpg",
"grafica/template/dettaglio-catalogo2_r8_c6.jpg",
"grafica/template/primo.jpg",
"grafica/template/ultimo.jpg",
"grafica/template/dettaglio-catalogo2_r8_c6ROLL.jpg",
"grafica/template/primoROLL.jpg",
"grafica/template/ultimoROLL.jpg"
);
*/



$(document).ready(function(){
//per il rollover le immagini devono avere lo stesso nome
	var pathOn  = "menuRollOn";
	var pathOff = "menuRollOff";

	$('#menuServiziHome2 li a').each(function(){

		var path = $(this).children('img').attr('src');
		


		$(this).hover( 				 			
				function () {
	
					path2 = path.replace(pathOff, pathOn);
					$(this).children(0).attr('src',path2);
					
				},
				function(){
					path2 = path.replace( pathOn,pathOff);
					$(this).children(0).attr('src',path2);
				}
		);
	});
});


