function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);
	menu = new Menu();
        menu.addItem("home",     "Mario Mainino", "Home page principale",  "index.html", null);
        menu.addItem("verdi",    "Giuseppe verdi",  "Home Page di sezione",  "myverdi.html", null);
	menu.addItem("articoli", "Altro",  "...",  null, null);
	menu.addItem("vita",     "La vita", "....", null, null);
	menu.addItem("opera",    "Le opere", "...",  null, null);
	menu.addItem("opera2",    "Le opere", "...",  null, null);
        menu.addItem("servizi",  "Servizi", "servizi", null);

menu.addSubItem("articoli", "Il centenario", "il primo dalla morte 2001 ",  "centenario.htm");

	menu.addSubItem("vita", "Cronologia", "della vita",  "lavita.html");

menu.addSubItem("opera", "Libretti ", "elenco libretti ", "libretti.html");

menu.addSubItem("opera", "1839_Oberto ", " libretto ",  "1839_oberto.html");
menu.addSubItem("opera", "1840_Giorno di regno ", " libretto ",  "1840_giornodiregno.html");
menu.addSubItem("opera", "1842_Nabucco ", " libretto ",  "1842_nabucco.html");
menu.addSubItem("opera", "1843_Lombardi  ", " libretto ",  "1843_lombardi.html");
menu.addSubItem("opera", "1844_Ernani  ", " libretto ",  "1844_ernani.html");
menu.addSubItem("opera", "1844_Due foscari  ", " libretto ",  "1844_duefoscari.html");
menu.addSubItem("opera", "1845_Giovanna D Arco  ", " libretto ",  "1845_giovannadarco.html");
menu.addSubItem("opera", "1845_Alzira  ", " libretto ",  "1845_alzira.html");
menu.addSubItem("opera", "1846_Attila  ", " libretto ",  "1846_attila.html");
menu.addSubItem("opera", "1847_Macbeth  ", " libretto ",  "1847_macbeth.html");
menu.addSubItem("opera", "1847_Masnadieri  ", " libretto ",  "1847_masnadieri.html");
menu.addSubItem("opera", "1847_Jérusalem  ", " libretto ",  "1847_jerusalem.html");
menu.addSubItem("opera", "1848_Corsaro ", " libretto ",  "1848_corsaro.html");
menu.addSubItem("opera", "1849_Battaglia di Legnano ", " libretto ",  "1849_battaglia.html");
menu.addSubItem("opera", "1849_Luisa Miller  ", " libretto ",  "1849_miller.html");
menu.addSubItem("opera", "1850_Stiffelio  ", " libretto ",  "1850_stiffelio.html");
menu.addSubItem("opera", "1851_Rigoletto ", " libretto ",  "1851_rigoletto.html");
menu.addSubItem("opera", "1853_Trovatore  ", " libretto ",  "1853_trovatore.html");
menu.addSubItem("opera", "1853_Traviata ", " libretto ",  "1853_traviata.html");
menu.addSubItem("opera2", "1855_Vêpres siciliennes ", " libretto ",  "1855_vespri.html");
menu.addSubItem("opera2", "1857_Simon Boccanegra ", " libretto ",  "1857_simone.html");
menu.addSubItem("opera2", "1857_Aroldo ", " libretto ",  "1857_aroldo.html");
menu.addSubItem("opera2", "1859_Ballo in maschera ", " libretto ",  "1859_ballo.html");
menu.addSubItem("opera2", "1862_Forza del destino ", " libretto ",  "1862_forza.html");
menu.addSubItem("opera2", "1865_Macbeth ", " libretto ",  "1865_macbeth.html");
menu.addSubItem("opera2", "1867_Don Carlos ", " libretto ",  "1867_doncarlo.html");
menu.addSubItem("opera2", "1869_Forza del destino ", " libretto ",  "1869_forza.html");
menu.addSubItem("opera2", "1871_Aida ", " libretto ",  "1871_aida.html");
menu.addSubItem("opera2", "1874_Messa da requiem ", " libretto ",  "1874_requiem.html");
menu.addSubItem("opera2", "1881_Simon Boccanegra ", " libretto ",  "1881_simone.html");
menu.addSubItem("opera2", "1884_Don Carlo ", " libretto ",  "1884_doncarlo.html");
menu.addSubItem("opera2", "1887_Otello ", " libretto ",  "1887_otello.html");
menu.addSubItem("opera2", "1893_Falstaff ", " libretto ",  "1893_falstaff.html");
menu.addSubItem("opera2", "1898_Quattro pezzi sacri  ", " libretto ",  "1898_quattropezzi.html");
menu.addSubItem("opera2", "9999_Romanze  ", " testi ",  "romanze.htm");
menu.addSubItem("opera2", "9999_Re Lear  ", " libretto ",  "9999_lear.html");



	menu.addSubItem("servizi", "Link", "in lavorazione",  "velink.htm");
	menu.addSubItem("servizi", "Link amici", "in lavorazione",  "amicidiverdi.htm");
	menu.addSubItem("servizi", "StandforEdu", "pagina importante di riferimento",  "standfordverdi.htm");
	menu.addSubItem("servizi", "Indiana", "spartiti canto e pianoforte",  "ve-indiana.htm");
	menu.addSubItem("servizi", "pagina vuota", "in lavorazione",  "venull.htm");

	menu.showMenu();
}
