//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("HomePage", "Home Page","Web Building Sites",null,null);
	menu.addItem("ContactUs","Contact Us",null,null);
	menu.addItem("AboutUs","About Us", "About Us",null,null);
	menu.addItem("Doors","Doors",null,null);
	menu.addItem("DockLevelers","Loading Dock Equipment",null,null);
	menu.addItem("PlantFurniture","In-Plant Equipment",null,null);
	menu.addSubItem("HomePage", "Return to the Main Page","",  "index.html","_top")
	menu.addSubItem("ContactUs", "Contact Form","",  "contact.htm","main");
	menu.addSubItem("AboutUs", "Company Profile","",  "companyprofile.htm", "main");
	
	menu.addSubItem("Doors", "Specialty-High Speed", "",  "doors.htm#SpecialtyHigh Speed Doors","main");
	menu.addSubItem("Doors", "TKO Impactable", "",  "doors.htm#TKO Impactable Doors", "main");
	menu.addSubItem("Doors", "TKO Flyweight Bugscreen", "", "doors.htm#TKO Flyweight Bugscreen Doors", "main");
	menu.addSubItem("Doors", "Sectional Doors", "",  "doors.htm#Sectional Doors", "main");
	menu.addSubItem("Doors", "Rolling Steel Doors", "",  "doors.htm#Rolling Steel Doors", "main");
	menu.addSubItem("Doors", "Impact Traffic Doors", "",  "doors.htm#Impact Traffic Doors", "main");
	menu.addSubItem("Doors", "Strip Doors", "",  "doors.htm#Strip Doors", "main");
	menu.addSubItem("Doors", "Air Curtains", "",  "doors.htm#Air Curtains", "main");
	
	
        menu.addSubItem("DockLevelers", "Dock Levelers", "",  "http://www.kelleycompany.com/Products/DockLevelers.aspx", "main");
	menu.addSubItem("DockLevelers", "Vehicle Restraints", "",  "http://www.kelleycompany.com/Products/Restraints/rv.aspx", "main");	
	menu.addSubItem("DockLevelers", "Seals and Shelters", "",  "http://www.kelleycompany.com/Products/SealsShelters.aspx", "main");	
	menu.addSubItem("DockLevelers", "Portable Dock Boards", "", "dockboardsandyardramps.htm#portable dock boards", "main");
	menu.addSubItem("DockLevelers", "Mobile Yard Ramps", "",  "dockboardsandyardramps.htm#mobile yard ramps", "main");
	menu.addSubItem("DockLevelers", "Misc Parts ", "",  "http://www.kelleycompany.com/Products/Aftermarket.aspx", "main");


	menu.addSubItem("PlantFurniture", "NEW! Damotech Rack Repair System", "",  "http://www.damotech.com/", "main");
	menu.addSubItem("PlantFurniture", "Lift Tables", "",  "http://www.kelleycompany.com/Products/LiftProducts/li.aspx", "main");
	menu.addSubItem("PlantFurniture", "Tilt Tables", "",  "http://www.kelleycompany.com/Products/LiftProducts/li3.aspx", "main");
	menu.addSubItem("PlantFurniture", "Turn Tables", "", "http://www.kelleycompany.com/Products/LiftProducts/li2.aspx", "main");
	menu.addSubItem("PlantFurniture", "Material Lifts", "",  "inplantequipment.htm#Material Lifts", "main");
	menu.addSubItem("PlantFurniture", "Modular Offices", "",  "inplantequipment.htm#Modular Offices", "main");
	menu.addSubItem("PlantFurniture", "Mezzanines", "",  "inplantequipment.htm#Mezzanines", "main");
	menu.addSubItem("PlantFurniture", "Storage Cabinets", "",  "inplantequipment.htm#Storage Cabinets", "main");

	menu.showMenu();
}