function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("productid", "Product informatie", "Alles over onze producten...",  null, null);
	menu.addItem("kopenid", "Producten Kopen", "Hoe u onze producten kunt aanschaffen...",  null, null);
	menu.addItem("activiteitenid", "Activiteiten", "Overzicht van activiteiten",  null, null);
	menu.addItem("AWid", "Aquarius Wholism", "Wie zijn wij en hoe kunt u ons bereiken...",  null, null);
	menu.addItem("siteseeingid", "Site-seeing", "rondneuzen...",  null, null);
	

	menu.addSubItem("productid", "Benzoliet producten", "Benzoliet producten",  "http://www.wholisme.nl/producten/benzoliet/benzoliet.htm");
	menu.addSubItem("productid", "Ozaliet producten", "Ozaliet producten",  "http://www.wholisme.nl/producten/ozaliet/ozaliet.htm");
	menu.addSubItem("productid", "Portaliet", "Portaliet",  "http://www.wholisme.nl/producten/Portaliet/portaliet.htm");
	menu.addSubItem("productid", "Transformatie Tetraëder", "Transformatie Tetraëder",  "http://www.wholisme.nl/producten/TT/tt.htm");
	menu.addSubItem("productid", "Eigen uitgaven", "Boeken, rapporten en dergelijke",  "http://www.wholisme.nl/producten/eigen_uitgaven/eigen_uitgaven.htm");
	menu.addSubItem("productid", "Veel gestelde vragen", "Vragen en antwoorden", "http://www.wholisme.nl/service/faq.htm");	
	menu.addSubItem("productid", "Achtergrond informatie", "Onderzoeksresultaten en publicaties",  "http://www.wholisme.nl/achtergrondinfo/overzicht.htm");

	menu.addSubItem("kopenid", "Webwinkel", "Online bestellen",  "http://www.mamut.com/aquariuswholism");
	menu.addSubItem("kopenid", "Telefonisch bestellen", "Bel & Bestel...",  "http://www.wholisme.nl/service/tel_bestel.htm");
      	menu.addSubItem("kopenid", "Bestellen per fax", "Fax & Relax...",  "http://www.wholisme.nl/service/faxbestel.htm");
	menu.addSubItem("kopenid", "Contactpersonen Nederland", "Onze Wholistic Partners in Nederland",  "http://www.wholisme.nl/service/partnerlijst.htm");
      	menu.addSubItem("kopenid", "Internationale contactpersonen", "Onze Wholistic Partners in het buitenland",  "http://www.wholisme.nl/service/int_partners.htm");	

	menu.addSubItem("activiteitenid", "Workshop Wholistisch Neutraliseren", "Eéndaagse workshop",  "http://www.wholisme.nl/activiteiten/workshop.htm");
	menu.addSubItem("activiteitenid", "Presentatie", "Lezing over de overgang naar het Aquarius tijdperk",  "http://www.wholisme.nl/activiteiten/presentatie.htm");
	menu.addSubItem("activiteitenid", "Agenda", "Een actueel overzicht van de activiteiten",  "http://www.wholisme.nl/activiteiten/agenda.htm");

	menu.addSubItem("AWid", "Bedrijfsprofiel", "Wie zijn wij?",  "http://www.wholisme.nl/achtergrondinfo/aquarius_wholisme.htm");
	menu.addSubItem("AWid", "Doelstellingen", "Waar doen we het voor?",  "http://www.wholisme.nl/achtergrondinfo/doelstellingen.htm");
	menu.addSubItem("AWid", "Contact", "Hoe kunt u ons bereiken?", "http://www.wholisme.nl/service/contact.htm");

	menu.addSubItem("siteseeingid", "Home", "Terug naar de homepage",  "http://www.wholisme.nl/service/index.htm");	
	menu.addSubItem("siteseeingid", "Site map", "De hele site op een rijtje",  "http://www.wholisme.nl/service/sitemap.htm");
	menu.addSubItem("siteseeingid", "Links", "Interessante website adressen",  "http://www.wholisme.nl/service/links.htm");
	
	menu.showMenu();
}