//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", "http://www.hostinggigant.com/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", "http://www.hostinggigant.com/bestel.php", null);

	menu.addSubItem("Accounts", "Inleiding", "Inleiding", "http://www.hostinggigant.com/accounts.php", "");
	menu.addSubItem("Accounts", "Overzicht", "Overzicht", "http://www.hostinggigant.com/accounts-overzicht.php", "");
	menu.addSubItem("Accounts", "Begrippenlijst", "Begrippenlijst", "http://www.hostinggigant.com/accounts-begrippenlijst.php", "");
	menu.addSubItem("Accounts", "Control Panel", "Control Panel", "http://www.hostinggigant.com/accounts-controlpanel.php", "");
	menu.addSubItem("Accounts", "Geld terug garantie", "Geld terug garantie", "http://www.hostinggigant.com/accounts-geldteruggarantie.php", "");
	menu.addSubItem("Accounts", "Mail & Present", "Mail & Present", "http://www.hostinggigant.com/accounts-mailpresent.php", "");

	menu.addSubItem("FAQNieuws", "Nieuws", "Nieuws", "http://www.hostinggigant.com/nieuws.php", "");
	menu.addSubItem("FAQNieuws", "Domeinnamen", "Domeinnamen", "http://www.hostinggigant.com/faq-domeinnaam.php", "");
	menu.addSubItem("FAQNieuws", "Accounts", "Accounts", "http://www.hostinggigant.com/faq-accounts.php", "");
	menu.addSubItem("FAQNieuws", "Opheffing", "Opheffing", "http://www.hostinggigant.com/faq-opheffing.php", "");
	menu.addSubItem("FAQNieuws", "Overige", "Overige", "http://www.hostinggigant.com/faq-overig.php", "");

	menu.addSubItem("Algemeen", "Sitemap", "Sitemap", "http://www.hostinggigant.com/sitemap.php", "");
	menu.addSubItem("Algemeen", "Contact", "Contact", "http://www.hostinggigant.com/contact.php", "");
	menu.addSubItem("Algemeen", "Voorwaarden", "Voorwaarden", "http://www.hostinggigant.com/algemene-voorwaarden.php", "");

	menu.showMenu();
}
