//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", "Home", "Home",  null, null);
	menu.addItem("Websites", "Advanced Tool Belts", "Go to Advanced Work Belts",  null, null);
   	menu.addItem("HowTo", "How To / Info.", "Misc Info",  null, null);
   	menu.addItem("Pencil", "Retractable Pencil", "Pencil",  null, null);
   	menu.addItem("Review", "Review", "Review",  null, null);
	menu.addItem("links", "Links", "Links",  null, null);
	menu.addItem("company", "Company", "Miscellaneous",  null, null);
      
	menu.addSubItem("home", "Return to Home", "Home",  "index.asp", "");
	
	menu.addSubItem("Websites", "Advanced Soft & Plush Belt", "Advanced Soft & Plush Tool Belt",  "softplush.asp", "");
	menu.addSubItem("Websites", "Advanced Firm Belt", "Advanced Firm Tool Belt",  "firm.asp", "");
	menu.addSubItem("Websites", "Advanced Leather 2 inch Belt", "Advanced Leather 2 inch Tool Belt",  "leather2.asp", "");
	menu.addSubItem("Websites", "Advanced Leather 3 inch Belt", "Advanced Leather 3 inch Tool Belt",  "leather3.asp", "");
	menu.addSubItem("Websites", "Advanced Suspenders", "Advanced Suspenders",  "suspenders.asp", "");
	menu.addSubItem("Websites", "All of our Products", "All Products",  "allproducts.asp", "");
		     	
	menu.addSubItem("HowTo", "Tool Belts Info.", "Tool Belts (General Info.)",  "Tool_Belts.asp", "");
	menu.addSubItem("HowTo", "Carpenters Tool Belts", "Carpenters Tool Belts",  "Carpenter_Tool_Belts.asp", "");
	menu.addSubItem("HowTo", "Electricians Tool Belts", "Electricians Tool Belts",  "Electricians_Tool_Belts.asp", "");
	menu.addSubItem("HowTo", "Plumbers Tool Belts", "Plumbers Tool Belts",  "Plumbers_Tool_Belts.asp", "");
	menu.addSubItem("HowTo", "Roofers Tool Belts", "Roofers Tool Belts",  "Roofers_Tool_Belts.asp", "");
	menu.addSubItem("HowTo", "Drywallers Tool Belts", "Drywallers Tool Belts",  "Drywallers_Tool_Belts.asp", "");
	menu.addSubItem("HowTo", "Choosing the correct tool belts","Choosing the correct tool belts", "ToolBag_Types.asp",  "", "");
    menu.addSubItem("HowTo", "Organizing your Tool belts","Organizing your Tool belts", "Tool_Belt_Organized.asp",  "", "");
    menu.addSubItem("HowTo", "Organizing your Fastners","Organizing your Fasteners", "Fasteners_Organized.asp",  "", "");
    
    menu.addSubItem("Pencil", "Retractable Carpenters Pencil", "Write a Review",  "Retractable_Pencil.asp", "");
    
    menu.addSubItem("Review", "Write a Review", "Write a Review",  "Review.asp", "");
        
  	menu.addSubItem("links", "Links", "Go to Links Page",  "Links.asp", "");

    menu.addSubItem("company", "About Us", "Find out about us",  "AboutUs.asp", "");
	menu.addSubItem("company", "Contact Us", "How To Reach Us",  "Contact.asp", "");
	menu.addSubItem("company", "Orders", "Ordering Options",  "orders.asp", "");
	menu.addSubItem("company", "Policies", "Policies",  "Policies.asp", "");
	
	menu.showMenu();
}
