var mostra=new Array();
var corrente=0;

var ie4 = document.all;
var ns4 = document.layers;
var ns6 = document.getElementById;

function inizializza(num_menu) {
  for(i=1;i<=num_menu;i++){
   if (ie4) eval("mostra["+i+"] = document.all.menu"+i+";");
   if (ns4) eval("mostra["+i+"] = document.menu"+i+";");
   if (ns6) eval("mostra["+i+"] = document.getElementById('menu"+i+"').style;");
  }
}

function chiudi() {
  if (corrente!=0) {
    var oggetto;
    oggetto = eval("mostra["+corrente+"]");
    oggetto.top = -500;
    corrente = 0;
   }
}

function apri(numero) {
   chiudi();
   var oggetto; 
   oggetto = eval("mostra["+numero+"]");
   oggetto.top = 20;
   corrente = numero;
 }

