//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("specialsid", "Specials", "Specials", "http://www.a-athletic.com/Specials.htm", null);
	menu.addItem("athleticid", "Athletics", "Athletics",  null, null);
	menu.addItem("firstaidid", "First Aid", "First Aid", "http://www.a-athletic.com/First_Aid/first_aid.htm", null);
	menu.addItem("homehealthid", "Home Health", "Home Health", "http://www.a-athletic.com/Home_Health/Home_Health.htm", null);
	menu.addItem("industrialid", "Industrial", "Industrial",  "http://www.a-athletic.com/Industrial/industrial_supplies.htm", null);
	menu.addItem("medicalid", "Medical", "Medical",  null, null);
	menu.addItem("sportsid", "Sports", "Sports", "http://www.a-athletic.com/Sports/Sports.htm", null);
	menu.addItem("oshaid", "OSHA", "OSHA",  null, null);
	menu.addItem("orderid", "Ordering", "Ordering",  null, null);
	menu.addItem("aboutid", "About Us", "About Us",  null, null);

	menu.addSubItem("athleticid", "Athletic Equipment", "Athletic Equipment",  "http://www.a-athletic.com/Athletics/Athletic_Equipment.htm", "");
	menu.addSubItem("athleticid", "Athletic Products", "Athletic Products",  "http://www.a-athletic.com/Athletics/Athletic_Supplies.htm", "");

	menu.addSubItem("medicalid", "Medical Equipment", "Medical Equipment",  "http://www.a-athletic.com/Medical/Medical_Equipment.htm", "");
	menu.addSubItem("medicalid", "Medical Supplies", "Medical Supplies",  "http://www.a-athletic.com/Medical/Medical_Supplies.htm", "");

	menu.addSubItem("oshaid", "OSHA Compliance Supplies", "OSHA Compliance Supplies",  "http://www.a-athletic.com/OSHA/osha_compliance.htm", "");
	menu.addSubItem("oshaid", "OSHA Approved Products", "OSHA Approved Products",  "http://www.a-athletic.com/OSHA/OSHAAP.htm", "");

	menu.addSubItem("orderid", "How to Order", "How to Order",  "http://www.a-athletic.com/Ordering/how_to_order.htm", "");
	menu.addSubItem("orderid", "Shipping Policies", "Shipping Policies",  "http://www.a-athletic.com/Ordering/shipping_policies.htm", "");


	menu.addSubItem("aboutid", "About A-Athletic", "About A-Athletic",  "http://www.a-athletic.com/About_Us/About_Us.htm", "");
	menu.addSubItem("aboutid", "Contact Us", "Contact Us",  "http://www.a-athletic.com/About_Us/Contact.htm", "");
	menu.addSubItem("aboutid", "Home", "Home",  "http://www.a-athletic.com/index.html", "");

	menu.showMenu();
}