function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("aaa", "Accueil du site", "Accueil du site",  null, null);
	menu.addItem("bbb", "Les robots", "Les robots",  null, null);
	menu.addItem("ccc", "Au cinéma", "Au cinéma",  null, null);
	menu.addItem("ddd", "Portraits", "Portraits",  null, null);
	menu.addItem("eee", "Dossier A.I.", "Dossier A.I.",  null, null);

	menu.addSubItem("aaa", "Retour à l'accueil", "Retour à l'accueil",  "index.html");
	

	menu.addSubItem("bbb", "Etymologie", "Etymologie",  "etymo.html");
	menu.addSubItem("bbb", "Mythologie", "Mythologie",  "mytho.html");
	menu.addSubItem("bbb", "Ancêtres", "Ancêtres",  "ancet.html");
	

	menu.addSubItem("ccc", "Historique", "Historique",  "histo.html");
	menu.addSubItem("ccc", "Psychanalyse", "Psychanalyse",  "psyco.html");
        menu.addSubItem("ccc", "Thèmes", "Thèmes",  "theme.html");
	

	menu.addSubItem("ddd", "Gort", "Gort",  "gort.html");
	menu.addSubItem("ddd", "R2D2", "R2D2",  "r2d2.html");
	

	menu.addSubItem("eee", "L'intelligence artificielle", "L'intelligence artificielle",  "intel.html");
	menu.addSubItem("eee", "Cog et Kimset", "Cog et Kimset",  "cog.html");
	menu.addSubItem("eee", "A.I. (le film)", "A.I. (le film)",  "ai.html");
	
	menu.showMenu();
}