function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("indexid", "Start pagina", "Naar beginpagina",  "index.html", null);
	menu.addItem("nieuwsid", "Nieuws", "Nieuws over dit project",  "nieuws.html", null);
	menu.addItem("projectid", "Project", "Info over dit project",  "project.html", null);
	menu.addItem("bandledenid", "Bandleden", "De bandleden",  "bandleden.html", null);
	menu.addItem("picsid", "Foto's", "Bekijk onze foto's",  "foto.html", null);
	menu.addItem("mp3id", "MP3's", "Luister naar mp3's",  "mp3.html", null);
	menu.addItem("optredensid", "Optredens", "Waar spelen we?",  "optredens.html", null);
	menu.addItem("linksid", "Links", "Links naar andere sites",  "links.html", null);
	menu.addItem("contactid", "Contact", "Zoek contact met het project",  "contact.html", null);
	menu.showMenu();
}
