$(document).ready(function(){
//per il rollover le immagini devono avere lo stesso nome
	$("#menutop a").hover(  			
		function () {	
			if($(this).children().attr("id")=="home"){
				$(this).parent().css({"background-image":"url('grafica/template/en/home.jpg')"});
			}
			if($(this).children().attr("id")=="chisiamo"){
				$(this).parent().css({"background-image":"url('grafica/template/en/chi-siamo.jpg')"});
			}
			if($(this).children().attr("id")=="dovesiamo"){
				$(this).parent().css({"background-image":"url('grafica/template/en/dove-siamo.jpg')"});
			} 
			if($(this).children().attr("id")=="photogallery"){
				$(this).parent().css({"background-image":"url('grafica/template/en/photogallery.jpg')"});
			}
			if($(this).children().attr("id")=="richiediinformazioni"){
				$(this).parent().css({"background-image":"url('grafica/template/en/richiedi-informazioni.jpg')"});
			}
		}
		,
		function(){
			
			$(this).parent().css({"background-image":"url('grafica/template/en/base.jpg')"});
			}
		
	);

});

