//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("home_id", "Home", "Home",  "homepage.html", null);
	menu.addItem("products_id", "Our Products", "Our Products",  null, null);
	menu.addItem("services_id", "Services We Offer", "Services We Offer",  null, null);
	menu.addItem("abtmesco_id", "About MESCO", "About MESCO",  null, null);
	menu.addItem("news_id", "News & Updates", "News & Updates",  null, null);
	menu.addItem("contact_id", "Contact Us", "Contact Us",  null, null);

	menu.addSubItem("home_id", "Location Map", "Location Map",  "contact_us_location_map.html", "");
	
	menu.addSubItem("products_id", "New Products", "New Products",  "prodlist_new.html", "");
	menu.addSubItem("products_id", "______________________", "Group Separator",  "", "");
	menu.addSubItem("products_id", "Machines", "Machines",  "prodlist_mch.html", "");
	menu.addSubItem("products_id", "Engineering Products", "Engineering Products",  "prodlist_engprod.html", "");

	menu.addSubItem("services_id", "Manufacturing", "Manufacturing",  "services_page.html", "");
	menu.addSubItem("services_id", "Calibration", "Calibration",  "services_page", "");
	menu.addSubItem("services_id", "Technical Training", "Technical Training",  "services_page", "");

	menu.addSubItem("abtmesco_id", "The MESCO Family", "The MESCO Family",  "about_mesco.html", "");
	menu.addSubItem("abtmesco_id", "Our Team", "Our Team",  "about_mesco.html", "");
	menu.addSubItem("abtmesco_id", "______________________", "Group Separator",  "", "");
	menu.addSubItem("abtmesco_id", "Global Suppliers", "Global Suppliers",  "about_mesco.html", "");

	menu.addSubItem("news_id", "Sales / Exhibits", "Sales / Exhibits",  "news.html", "");

	menu.addSubItem("contact_id", "E-Mail Us", "E-Mail Us",  "mailto:mesco@mesco.com.ph", "");
	menu.addSubItem("contact_id", "Location Map", "Location Map",  "contact_us_location_map.html", "");

	menu.showMenu();
}
