function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);


	menu = new Menu();
	menu.addItem("acc", "Acceuil", "Bonjour!",  null, null);
	menu.addItem("heg", "Histoire et géo", "Foire aux questions",  null, null);
	menu.addItem("rec", "Recherche et liens", "Perdu vos chaines?",  null, null);
	menu.addItem("cour", "Histoire: Marbaix la Tour", "Divers",  null, null);
	menu.addItem("met", "Livre d'Or et M&eacute;t&eacute;o", "Le silence aussi est d'or",  null, null);

	menu.addSubItem("acc", "Retour page d'acceuil", "On rentre?",  "../../acceuil/index.html");
	menu.addSubItem("acc", "Pr&eacute;sentation", "Comment fonctionne la bib de la fac de med",  "../../presentation/index.html");
	menu.addSubItem("acc", "Visite guid&eacute;e", "Prends ma main",  "../../photos/index.html");
	menu.addSubItem("acc", "Acc&egrave;s", "Comment faire pour perdre les visiteurs ?",  "../../acces/index.html");
        menu.addSubItem("acc", "Le Ouebemestre", "Futur entart&eacute;?",  "../../webmaster/index.html");
        menu.addSubItem("acc", "Nous &eacute;crire", "scratch, scratch, scratch,...",  "mailto:patrick.seeuws@skynet.be");

	menu.addSubItem("heg", "G&eacute;n&eacute;ralit&eacute;s", "Pr&eacute;vu",  "../index.html");
	menu.addSubItem("heg", "Ham sur Heure", "Pour les Bourquis",  "../ham/index.html");
	menu.addSubItem("heg", "Nalinnes", "Pour les Marloyats",  "../nalinnes/index.html");
	menu.addSubItem("heg", "Jamioulx", "Pour les Lothys",  "histoire/jamioulx/index.html");
	menu.addSubItem("heg", "Marbaix la tour", "Qui peut m aider ?",  "../marbaix/index.html");
	menu.addSubItem("heg", "Cour sur Heure", "Ben , la aussi je suis a court",  "../cour/index.html");
	

	menu.addSubItem("rec", "Associations", "Ensemble, on est plus fort!",  "../../associations/index.html");
	menu.addSubItem("rec", "Tourisme", "Venez nous dire un petit bonjour!",  "../../tourisme/index.html");
	menu.addSubItem("rec", "Liens amis", "Amour , toujours",  "../../liens/index.html");
	menu.addSubItem("rec", "Liens ennemis", "Petit curieux va !",  "../../liens/index404.html");
	menu.addSubItem("rec", "Liens utiles", "Cours toujours !", "../../liens/indexb.html");
	menu.addSubItem("rec", "Liens inutiles", "On a tout pour les gens polis",  "../../liens/indexb.html");

	menu.addSubItem("cour", "1000 ans d'histoire!", "",  "index.html");
	menu.addSubItem("cour", "Origines, noms, variantes", "",  "marbx02.html");
	menu.addSubItem("cour", "Population et activit&eacute;s", "",  "marbx03.html");
	menu.addSubItem("cour", "Le sol, taxes, imp&ocirc;ts.", "",  "marbx04.html");
	menu.addSubItem("cour", "Droits seigneuriaux", "",  "marbx05.html");
	menu.addSubItem("cour", "Organisation communale", "",  "marbx06.html");
	menu.addSubItem("cour", "Cour et justice", "",  "marbx07.html");
	menu.addSubItem("cour", "Culte, &eacute;glises, d&icirc;mes", "",  "marbx08.html");
	menu.addSubItem("cour", "Ch&acirc;teau de la Pasture", "",  "marbx09.html");
	menu.addSubItem("cour", "Napol&eacute;on dans nos murs", "",  "marbx10.html");
	menu.addSubItem("cour", "F&ecirc;tes, mœurs et usages", "",  "marbx11.html");
	menu.addSubItem("cour", "Les deux guerres", "",  "marbx12.html");
	menu.addSubItem("cour", "Marbaix moderne.", "",  "marbx13.html");

	menu.addSubItem("met", "Livre d'or", "Coucou c est moi!",  "http://repere.net/guestbook/livre.asp?id=3525");

	menu.addSubItem("met", "M&eacute;t&eacute;o", "Temps beau &agrave; mauvais , etc...",  "../../meteo/index.html");

	menu.showMenu();
}