

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("homeid", "Home", "",  "main.htm", null);
	menu.addItem("aboutid", "About Us", "",  "about.htm", null);
	menu.addItem("distid", "Distribution", "",  "dist.htm", null);
	menu.addItem("gearid", "Gearboxes", "",  null, null);
	menu.addItem("pumpid", "Pumps", "",  null, null);
	menu.addItem("prodid", "Other Products", "",  null, null);
	menu.addItem("servid", "Services", "",  null, null);
	menu.addItem("infoid", "Contact Info", "",  null, null);

	menu.addSubItem("gearid", "Maint. & Repair", "",  "gb1.htm", "");
	menu.addSubItem("gearid", "Distribution", "",  "gb2.htm", "");
	menu.addSubItem("gearid", "Current Inventory", "",  "gearboxes.shtml", "");

	menu.addSubItem("pumpid", "Maint. & Repair", "",  "pm1.htm", "");
	menu.addSubItem("pumpid", "Distribution", "",  "pm2.htm", "");

	menu.addSubItem("prodid", "Bearings", "",  "bearings.shtml", "");
	menu.addSubItem("prodid", "Bushings", "",  "construction.shtml", "");
	menu.addSubItem("prodid", "Chains", "",  "construction.shtml", "");
	menu.addSubItem("prodid", "Couplings", "",  "couplings.shtml", "");
	menu.addSubItem("prodid", "Idlers", "",  "idlers.shtml", "");
	menu.addSubItem("prodid", "Motors", "",  "motors.shtml", "");
	menu.addSubItem("prodid", "Pulleys", "",  "pulleys.shtml", "");
	menu.addSubItem("prodid", "Sheaves", "",  "construction.shtml", "");
	menu.addSubItem("prodid", "Sprockets", "",  "construction.shtml", "");

	
	menu.addSubItem("servid", "Machining", "",  "s1.htm", "");
	menu.addSubItem("servid", "Welding & Fab.", "",  "s2.htm", "");
	menu.addSubItem("servid", "Design Concept", "",  "s3.htm", "");


	menu.addSubItem("infoid", "Info Request", "",  "request.htm", "");
	menu.addSubItem("infoid", "Location Map", "", "location.htm", "");
	menu.addSubItem("infoid", "Email Us", "",  "email.htm", "");


	menu.showMenu();
}
