//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.shtml

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.shtml", null);
	menu.addItem("athleticid", "Athletics", "Athletics",  null, null);
	menu.addItem("firstaidid", "First Aid", "First Aid", "http://www.a-athletic.com/first_aid.shtml", null);
	menu.addItem("homehealthid", "Home Health", "Home Health", "http://www.a-athletic.com/home_health.shtml", null);
	menu.addItem("industrialid", "Industrial", "Industrial",  "http://www.a-athletic.com/industrial_supplies.shtml", null);
	menu.addItem("medicalid", "Medical", "Medical",  null, null);
	menu.addItem("sportsid", "Sports", "Sports", "http://www.a-athletic.com/sports.shtml", 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/athletic_equipment.shtml", "");
	menu.addSubItem("athleticid", "Athletic Products", "Athletic Products",  "http://www.a-athletic.com/athletic_supplies.shtml", "");

	menu.addSubItem("medicalid", "Medical Equipment", "Medical Equipment",  "http://www.a-athletic.com/medical_equipment.shtml", "");
	menu.addSubItem("medicalid", "Medical Supplies", "Medical Supplies",  "http://www.a-athletic.com/medical_supplies.shtml", "");

	menu.addSubItem("oshaid", "OSHA Compliance Supplies", "OSHA Compliance Supplies",  "http://www.a-athletic.com/osha_compliance.shtml", "");
	menu.addSubItem("oshaid", "OSHA Approved Products", "OSHA Approved Products",  "http://www.a-athletic.com/OSHAAP.shtml", "");

	menu.addSubItem("orderid", "How to Order", "How to Order",  "http://www.a-athletic.com/how_to_order.shtml", "");
	menu.addSubItem("orderid", "Shipping Policies", "Shipping Policies",  "http://www.a-athletic.com/shipping_policies.shtml", "");


	menu.addSubItem("aboutid", "About A-Athletic", "About A-Athletic",  "http://www.a-athletic.com/about_us.shtml", "");
	menu.addSubItem("aboutid", "Contact Us", "Contact Us",  "http://www.a-athletic.com/contact.shtml", "");
	menu.addSubItem("aboutid", "Home", "Home",  "http://www.a-athletic.com/index.shtml", "");

	menu.showMenu();
}