//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("Welkom", "Welkom", "Welkom", "welkom.php", null);
	menu.addItem("Accounts", "Accounts", "Accounts", null, null);
	menu.addItem("FAQNieuws", "FAQ / Nieuws", "FAQ / Nieuws", null, null);
	menu.addItem("Algemeen", "Algemeen", "Algemeen", null, null);
	menu.addItem("Bestellen", "Bestellen", "Bestellen", "bestel.php", null);

	menu.addSubItem("Accounts", "Inleiding", "Inleiding", "accounts.php", "");
	menu.addSubItem("Accounts", "Overzicht", "Overzicht", "accounts-overzicht.php", "");
	menu.addSubItem("Accounts", "Begrippenlijst", "Begrippenlijst", "accounts-begrippenlijst.php", "");
	menu.addSubItem("Accounts", "Control Panel", "Control Panel", "accounts-controlpanel.php", "");
	menu.addSubItem("Accounts", "Geld terug garantie", "Geld terug garantie", "accounts-geldteruggarantie.php", "");
	menu.addSubItem("Accounts", "Mail & Present", "Mail & Present", "accounts-mailpresent.php", "");

	menu.addSubItem("FAQNieuws", "Nieuws", "Nieuws", "nieuws.php", "");
	menu.addSubItem("FAQNieuws", "Domeinnamen", "Domeinnamen", "faq-domeinnaam.php", "");
	menu.addSubItem("FAQNieuws", "Accounts", "Accounts", "faq-accounts.php", "");
	menu.addSubItem("FAQNieuws", "Opheffing", "Opheffing", "faq-opheffing.php", "");
	menu.addSubItem("FAQNieuws", "Overige", "Overige", "faq-overig.php", "");

	menu.addSubItem("Algemeen", "Sitemap", "Sitemap", "sitemap.php", "");
	menu.addSubItem("Algemeen", "Contact", "Contact", "contact.php", "");
	menu.addSubItem("Algemeen", "Voorwaarden", "Voorwaarden", "algemene-voorwaarden.php", "");

	menu.showMenu();
}
