function menu(pag) {
tasto = new Array("home", "pista", "gruppo", "eventi", "gallery", "links", "meteo", "video", "archivio", "occasioni", "tecnica", "dove siamo", "forum", "contatti");
// tasti menu
ref = new Array("index.php", "pista.html", "gruppo.html", "eventi.html", "galleriaprinc.html", "links.html", "meteone.html", "#", "#", "occasioni.html", "tecnica.php", "dove.html", "#", "contatti.html" );
// collegamenti href delle pagine
acti = new Array(0,0,0,0,0,0,0,1,1,0,0,0,1,0);
// lo zero indica tasto attivo, l'uno lo stato inattivo
var i=0;

document.write('<div id="glossymenu"><ul>');

	while(i<tasto.length) {
  document.write('<li>');
  //alert(tasto.length);
  //notare l'indice variabile
			if(tasto[i]==pag) {
					document.write('<div id="corrente" >' + tasto[i] + '</div></li>');
					} else
					{
			if(acti[i]==0) {
					document.write('<a href="' + ref[i] + '">' + tasto[i] + '</a></li>');
					}
			if(acti[i]==1) {
			
					document.write('<a id="bloccato" href="' + ref[i] + '">' + tasto[i] + '</a></li>');
					}
					}
					
  //alert (tasto[i]);

  //fine blocco di istruzioni 

  i++; //aumento l'indice di 1
 }
 document.write('</ul>');
 }
















