document.pla= new Array();
if (navigator.userAgent.indexOf("MSIE") != -1) {
	var isIE = true ;
} else {
	var isIE = false;
}

with (document) {
	pla[0]= new Image; pla[0].src="Immagini/lnk_dove_01.jpg";
	pla[1]= new Image; pla[1].src="Immagini/lnk_dove_02.jpg";
	pla[2]= new Image; pla[2].src="Immagini/lnk_locale_01.jpg";
	pla[3]= new Image; pla[3].src="Immagini/lnk_locale_02.jpg";
}

function over_dove(){
	with (document) {
		getElementById('dove').src=pla[1].src;
	}
}
function out_dove() {
	with (document) {
		getElementById('dove').src=pla[0].src;
	}
}
function over_locale(){
	with (document) {
		getElementById('locale').src=pla[3].src;
	}
}
function out_locale() {
	with (document) {
		getElementById('locale').src=pla[2].src;
	}
}

function CambiaAlpha(id,value) {
	if (isIE) {
		document.getElementById(id).style.filter = 'Alpha(Opacity=' + value + ')';
	} else {
		if (value>=100) {
			document.getElementById(id).style.opacity = '1.0';
		} else {
			document.getElementById(id).style.opacity = '0.' + value;
		}
	}
}
function CambiaImmagini() {
	if (isIE) {
		document.getElementById('titolo').src='immagini/titolo_01.gif';
	} else {
		document.getElementById('titolo').src='immagini/titolo_01.png';
	}
	for (i=1;i<6;i++) {
		CambiaAlpha('menu0'+i,85);
	}
}
function SelezionaMenu(menu,value) {
	for (i=1;i<6;i++) {
		if (menu==i) {
			CambiaAlpha('menu0'+i,100);
		} else {
			CambiaAlpha('menu0'+i,value);
		}
	}
}