// JavaScript Document

$('li[class*=roundabout-in-focus]').live('click',function(){
				var target = $(this).children().eq(0).attr('rel');
				switch(target)
				{
					case "img_progettazione":
						document.location ='Progettazione.asp';
						break;
					case "img_costruzione":
					document.location ='Costruzione.asp';
						break;
					case "img_gestione":
					document.location ='Gestione.asp';
						break;
					case "img_trivellazione":
					document.location ='Trivellazione.asp';
						break;
					case "img_potabilizzazione":
					document.location ='Potabilizzazione.asp';
						break;
						
					default:
						break;
				}
});

function lyChange( sId ) {
	var oLayer = document.getElementById(sId);
	if (oLayer.style.display=="none") { oLayer.style.display='' }
	else { oLayer.style.display="none" }
}
