$(document).ready(function(){
	//rollover menu orizzontale
	//per il rollover le immagini devono avere lo stesso nome
	var pathOn  = "grafica/templates/";

	$('#menuServizi a').each(function(){
		$(this).hover( 				 			
				function () {	
					$(this).find('span').css({'background':"transparent url('"+pathOn+"profumo-di-nozze_r5_c5.jpg') no-repeat center top"});
				},
				function(){
					$(this).find('span').css({'background':"none"})
				}
		);
	});
});



