function menuItems(temptext, temphref, frame) {
	this.temptext = temptext;
	this.temphref = temphref;
	this.frame = frame;
}

var activeNr = ''; // Specify the currently active menupoint, which will be marked as active.
                    // Alternatively the function setActiveMenuPoint() can be used to set it dynamically

/**********************************************************
 * Zweidimensionaler Array
 **********************************************************/
var menu = new Array();
menu[0] = new Array();
menu[0][0] = new menuItems("ALPE-VICANIA.Ch",null,"_top");
menu[1] = new Array();
menu[1][0] = new menuItems("Castello","av_castello.htm","_top");
menu[1][1] = new menuItems("Storia","av_c_storia.htm","_top");
menu[1][2] = new menuItems("Eventi","av_c_eventi.htm","_top");
menu[1][3] = new menuItems("Gallery","av_c_gallery.htm","_top");
menu[1][4] = new menuItems("Proposte gastronomiche","av_ristorante.php","_top");
menu[2] = new Array();
menu[2][0] = new menuItems("Paesaggio & Ubicazione","av_paesaggio-ubicazione.htm","_top");
menu[2][1] = new menuItems("Paesaggio","av_pu_paesaggio.htm","_top");
menu[2][2] = new menuItems("Ubicazione","av_pu_ubicazione.htm","_top");
menu[3] = new Array();
menu[3][0] = new menuItems("Natura & Cavalli","av_natura-cavalli.htm","_top");
menu[3][1] = new menuItems("Escursioni","av_nc_escursioni.htm","_top");
menu[3][2] = new menuItems("Cavalli","av_nc_cavalli.htm","_top");
menu[3][3] = new menuItems("Gallery","av_nc_gallery.htm","_top");
menu[3][4] = new menuItems("Contatto","av_nc_contatto.php","_top");
menu[4] = new Array();
menu[4][0] = new menuItems("Ristorante","av_ristorante.php","_top");
/*
menu[4][1] = new menuItems("Ambiente","av_r_ambiente.php","_top");
menu[4][2] = new menuItems("Carta & Menu","av_r_carta-menu.php","_top");
menu[4][3] = new menuItems("Banchetti","av_r_banchetti.php","_top");
menu[4][4] = new menuItems("Matrimoni","av_r_matrimoni.php","_top");
menu[4][5] = new menuItems("Degustazioni","av_r_degustazioni.php","_top");
menu[4][6] = new menuItems("Eventi & Serate","av_r_eventi-serate.php","_top");
menu[4][7] = new menuItems("Contatto","av_r_contatto.php","_top");
*/