function illuminaTasto(menu,link){	
	document.getElementById(menu).style.backgroundColor='#6699CC';
	document.getElementById(link).style.color='#EEEEEE';
}
		
function spegniTasto(menu,link){
	document.getElementById(menu).style.backgroundColor='#DDEEEE';
	document.getElementById(link).style.color='#336699';
}
