function change_color_old(id){
     document.getElementById(id).style.backgroundColor='red'
     var alltags=document.getElementsByTagName('div');
     //Decoloro tutti gli altri
     for (i=0; i<alltags.length; i++){
          //alert(alltags[i].id)
         if (alltags[i].id==id){
         }
         else{
             document.getElementsByTagName(alltags[i]).style.backgroundColor='blue';
         }            
     }
}

function change_color(id){
	menu = new Array(); //viene creato l'array
	menu[0]="chisiamo";
	menu[1]="univ";
	menu[2]="attiv";
	menu[3]="risorse";
	menu[4]="negoz";
	menu[5]="linkutili";
	menu[6]="chisiamo_";
	menu[7]="univ_";
	menu[8]="attiv_";
	menu[9]="risorse_";
	menu[10]="negoz_";
	menu[11]="linkutili_";
	for(i=0; i<menu.length; i++){
	     if(menu[i]!=id && document.getElementById(menu[i])){
	        //Ritorna celeste
	        document.getElementById(menu[i]).style.backgroundColor='#99CCFF';
	        document.getElementById(menu[i]).firstChild.style.color='black';
	      }
	}
	document.getElementById(id).style.backgroundColor='#003366';
	document.getElementById(id).firstChild.style.color='#FFFFFF';
	
}
