//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("aboutid", "About", "About",  null, null);
	menu.addItem("productsid", "Products", "Products",  null, null);
	menu.addItem("newsandeventsid", "News & Events", "News & Events",  null, null);
	menu.addItem("contactid", "Contact", "Contact",  null, null);

	menu.addSubItem("aboutid", "About VisiLED", "About VisiLED",  "about.html", "");
	menu.addSubItem("aboutid", "About the Founder", "About the Founder",  "founder.html", "");

	menu.addSubItem("productsid", "Halo XL", "Halo XL",  "halo_xl.html", "");
	menu.addSubItem("productsid", "Halo OR", "Halo OR",  "halo_or.html", "");

	menu.addSubItem("newsandeventsid", "News", "News",  "news.html", "");
	menu.addSubItem("newsandeventsid", "Events", "Events",  "events.html", "");

	menu.addSubItem("contactid", "Contact Us", "Conctact Us",  "contact.html", "");
	menu.addSubItem("contactid", "Solution Partners", "Solution Partners",  "partners.html", "");

	menu.showMenu();
}