function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("devid", "Devilman", "Debiruman", null);
	menu.addItem("goldid", "Ufo robot Goldrake", "Ufo robot Grendizer", null);
	menu.addItem("mid", "Mazinga Z", "Majinga Z", null);
	menu.addItem("gmid", "Grande Mazinga", "Great Mazinger", null);
	menu.addItem("jmid", "Jeeg robot d'acciaio", "Kotetsu Jeeg", null);
	menu.addItem("bioid", "Go Nagai", "Il maestro", null);
	
    menu.addSubItem("devid", "Manga e Anime", "Debiruman", "d.htm")  ;
	menu.addSubItem("devid", "Personaggi", "Debiruman",  "d_p.htm");
	menu.addSubItem("devid", "Episodi", "Debiruman",  "d_e.htm");
	menu.addSubItem("devid", "Multimedia", "Debiruman",  "mult.htm");
	menu.addSubItem("devid", "Home", "Debiruman", "index.htm")  ;
	menu.addSubItem("devid", "Links", "Debiruman",  "l.htm");
	menu.addSubItem("devid", "Email", "Debiruman", "mailto:noein_revenge@hotmail.com")  ;

    menu.addSubItem("goldid", "Manga e Anime", "Ufo robot Grendizer",  "g.htm");
	menu.addSubItem("goldid", "Personaggi", "Ufo robot Grendizer",  "g_p.htm");
	menu.addSubItem("goldid", "Episodi", "Ufo robot Grendizer",  "g_e.htm");
	menu.addSubItem("goldid", "Multimedia", "Ufo robot Grendizer",  "mult.htm");
	menu.addSubItem("goldid", "Home", "Ufo robot Grendizer", "index.htm")  ;
	menu.addSubItem("goldid", "Links", "Ufo robot Grendizer",  "l.htm");
	menu.addSubItem("goldid", "Email", "Ufo robot Grndizer", "mailto:noein_revenge@hotmail.com")  ;
	
	menu.addSubItem("mid", "Manga e Anime", "Majinga Z",  "m.htm");
	menu.addSubItem("mid", "Personaggi", "Majinga Z",  "m_p.htm");
	menu.addSubItem("mid", "Episodi", "Majinga Z",  "m_e.htm");
	menu.addSubItem("mid", "Multimedia", "Majinga Z",  "mult.htm");
	menu.addSubItem("mid", "Home", "Majinga Z", "index.htm")  ;
	menu.addSubItem("mid", "Links", "Majinga Z",  "l.htm");
	menu.addSubItem("mid", "Email", "Majinga Z", "mailto:noein_revenge@hotmail.com")  ;

    menu.addSubItem("gmid", "Manga e Anime", "Great Mazinger", "gm.htm");
	menu.addSubItem("gmid", "Personaggi", "Great Mazinger",  "gm_p.htm");
	menu.addSubItem("gmid", "Episodi", "Great Mazinger",  "gm_e.htm");
	menu.addSubItem("gmid", "Multimedia", "Great Mazinger",  "mult.htm");
	menu.addSubItem("gmid", "Home", "Great Mazinger", "index.htm")  ;
	menu.addSubItem("gmid", "Links", "Great Mazinger",  "l.htm");
	menu.addSubItem("gmid", "Email", "Great Mazinger", "mailto:noein_revenge@hotmail.com")  ;
	
	menu.addSubItem("jmid", "Manga e Anime", "Kotetsu Jeeg",  "j.htm");
	menu.addSubItem("jmid", "Personaggi", "Kotetsu Jeeg",  "j_p.htm");
	menu.addSubItem("jmid", "Episodi", "Kotetsu Jeeg",  "j_e.htm");
	menu.addSubItem("jmid", "Multimedia", "Kotetsu Jeeg",  "mult.htm");
	menu.addSubItem("jmid", "Home", "Kotetsu Jeeg", "index.htm")  ;
	menu.addSubItem("jmid", "Links", "Kotetsu Jeeg",  "l.htm");
	menu.addSubItem("jmid", "Email", "Kotetsu Jeeg", "mailto:noein_revenge@hotmail.com")  ;

	menu.addSubItem("bioid", "Biografia", "Il maestro",  "b.htm");
	menu.addSubItem("bioid", "Home", "Il maestro", "index.htm")  ;
	menu.addSubItem("bioid", "Links", "Il maestro",  "l.htm");
	menu.addSubItem("bioid", "Email", "Il maestro", "mailto:noein_revenge@hotmail.com")  ;



	menu.showMenu();
}