//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",  "home.html", "_top");
	menu.addItem("servicesid", "Services", "Services",  "ablaze_services.html", "_top");
        menu.addItem("achievementsid", "Achievements", "Achievements",  "achievements.html", "_top");
	menu.addItem("productsid", "Products", "Products",  "ablaze_products.html", "_top");
	menu.addItem("facilitiesid", "Facilities", "Facilities",  "facilities.html", "_top");
	menu.addItem("contactid", "Contact", "Contact",  "ablaze_contact.html", "_top");



	menu.showMenu();

}