//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("homeid", "Home", "Home",  "index.html", "");
	menu.addItem("productsid", "Products", "Products",  "products.html", "");
	menu.addItem("servicesid", "Services", "Services",  "services.html", "");
	menu.addItem("contactid", "Contact Us", "Contact Us",  "contact.html", "");
	menu.addItem("aboutid", "About Greenergy", "About Greenergy",  "about.html", "");



	menu.showMenu();
}
