$(document).ready(function(){


	//rollover menu orizzontale
	//per il rollover le immagini devono avere lo stesso nome
	var pathOn  = "grafica/templates/menuRollOn/";
	var pathOff = "grafica/templates/menuRollOff/";

	$('#menu a').each(function(){
		var path = $(this).children('img').attr('src');
		var pathimg = path.split('/');
		var img = pathimg[(pathimg.length-1)];			

		$(this).hover( 				 			
				function () {	
					//$(this).children(0).fadeTo('fast',.9);
					$(this).children(0).attr('src',pathOn + img);
					//$(this).children(0).fadeTo('fast',1);
				},
				function(){
					//$(this).children(0).fadeTo('fast',.9);
					$(this).children(0).attr('src',pathOff + img);
					//$(this).children(0).fadeTo('fast',1);
				}
		);
	});





});



