/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("esid", "Equipment & Services", "Equipment & Services",  null, null);
	menu.addItem("gid", "Gallery", "Gallery",  null, null);
	menu.addItem("aid", "About Us", "About Us",  null, null);
	menu.addItem("cid", "Contact Us", "Contact Us",  null, null);
        menu.addItem("hid", "Home", "Home",  null, null);

	menu.addSubItem("esid", "Services", "Services",  "http://www.metaltechfab.com/equipment.html", "");
	menu.addSubItem("esid", "Equipment & Facility", "Equipment & Facility",  "http://www.metaltechfab.com/equipment.html", "");


	menu.addSubItem("gid", "Custom Gallery", "Custom Gallery",  "http://www.metaltechfab.com/custom.html", "");
        menu.addSubItem("gid", "Fun Gallery", "Fun Gallery",  "http://www.metaltechfab.com/fun.html", "");
        

	menu.addSubItem("aid", "About Us", "About Us",  "http://www.metaltechfab.com/about.html", "");


	menu.addSubItem("cid", "Contact Us", "Contact Us",  "http://www.metaltechfab.com/contact.html", "");



	menu.addSubItem("hid", "Home", "Home",  "http://www.metaltechfab.com/index.html", "");


	menu.showMenu();

}