//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Home",  "http://www.orthomerica.com", null);
	menu.addItem("companyid", "Company", "Company",  null, null);
	menu.addItem("customid", "Custom Fabrication", "Custom Fabrication",  null, null);
	menu.addItem("productsid", "Products", "Products",  null, null);
	menu.addItem("technologyid", "Technology", "Technology",  null, null);
	menu.addItem("pubsid", "Publications", "Publications",  null, null);
	menu.addItem("educationid", "Education", "Education",  null, null);
	menu.addItem("calendarid", "Calendar", "Calendar",  null, null);
	menu.addItem("searchid", "Search", "Search",  "http://www.orthomerica.com/search/", null);
	
	menu.addSubItem("companyid", "About Us", "About Us",  "http://www.orthomerica.com/company/about.htm");
	menu.addSubItem("companyid", "Contact Us", "Contact Us",  "http://www.orthomerica.com/company/contact_us.htm");
	menu.addSubItem("companyid", "Employment", "Employment",  "http://www.orthomerica.com/company/employment.htm");
	menu.addSubItem("companyid", "Press", "Press",  "http://www.orthomerica.com/company/press/press.htm");
	menu.addSubItem("companyid", "Customer Service", "Customer Service",  "http://www.orthomerica.com/company/custserv.htm");

	menu.addSubItem("customid", "Custom Capabilities", "Custom Capabilities",  "http://www.orthomerica.com/custom/custom_capabilities.htm");
	menu.addSubItem("customid", "Clinical Expertise", "Clinical Expertise",  "http://www.orthomerica.com/custom/custom_clinical.htm");
	menu.addSubItem("customid", "Custom Spinal", "Custom Spinal",  "http://www.orthomerica.com/custom/custom_spinal.htm");
	menu.addSubItem("customid", "Custom Upper Extremity", "Custom Upper Extremity",  "http://www.orthomerica.com/custom/custom_upper.htm");
	menu.addSubItem("customid", "Custom Hip", "Hip",  "http://www.orthomerica.com/custom/custom_hip.htm");
	menu.addSubItem("customid", "Custom Lower Extremity", "Custom Lower Extremity",  "http://www.orthomerica.com/custom/custom_lower.htm");
	menu.addSubItem("customid", "Custom Foot and Ankle", "Custom Foot and Ankle",  "http://www.orthomerica.com/custom/custom_footankle.htm");
	menu.addSubItem("customid", "Custom Pediatric", "Custom Pediatric",  "http://www.orthomerica.com/custom/custom_pediatric.htm");

	menu.addSubItem("productsid", "Spinal Orthoses", "Spinal Orthoses",  "http://www.orthomerica.com/products/spinal/spinalindex.htm");
	menu.addSubItem("productsid", "Upper Extremity Orthoses", "Upper Extremity",  "http://www.orthomerica.com/products/upext/upext_index.htm");
	menu.addSubItem("productsid", "Hip Orthoses", "Hip Orthoses",  "http://www.orthomerica.com/products/hip/hipindex.htm");
	menu.addSubItem("productsid", "Lower Extremity Orthoses", "Lower Extremity",  "http://www.orthomerica.com/products/lowext/lowextindex.htm");
	menu.addSubItem("productsid", "Foot and Ankle Orthoses", "Foot and Ankle",  "http://www.orthomerica.com/products/anklefoot/index.htm");
	menu.addSubItem("productsid", "Pediatric Orthoses", "Pediatric Orthoses",  "http://www.orthomerica.com/products/pediatric/pediatric_index.htm");

	menu.addSubItem("productsid", "Prosthetics", "Prosthetics",  "http://www.orthomerica.com/products/prosthetics/prosthetics_index.htm");

	menu.addSubItem("technologyid", "eBrace", "eBrace",  "http://www.orthomerica.com/technology/ebrace.htm");
	menu.addSubItem("technologyid", "STARscanner", "STARscanner",  "http://www.orthomerica.com/technology/starscanner.htm");

	menu.addSubItem("pubsid", "Order Catalog", "Order Catalog",  "http://www.orthomerica.com/publications/order_catalogs.htm");
	menu.addSubItem("pubsid", "Product Brochures", "Product Brochures",  "http://www.orthomerica.com/publications/brochures.htm");
	menu.addSubItem("pubsid", "Clinical Reports", "Clincal Reports",  "http://www.orthomerica.com/publications/clinical_reports.htm");
	menu.addSubItem("pubsid", "Orthometry Forms", "Orthometry Forms",  "http://www.orthomerica.com/publications/orthometry.htm");
	menu.addSubItem("pubsid", "Patient Instructions", "Patient Instructions",  "http://www.orthomerica.com/publications/patient_instr.htm");
	menu.addSubItem("pubsid", "Image Library", "Image Library",  "http://www.orthomerica.com/imagelibrary.htm");

	menu.addSubItem("educationid", "Educational Seminars", "Educational Seminars",  "http://www.orthomerica.com/education/seminar.htm");
	menu.addSubItem("educationid", "Online Cranial Course", "Online Cranial Course",  "http://www.orthomerica.com/cc/index.html");
	menu.addSubItem("educationid", "Seminar Schedule", "Seminar Schedule",  "http://www.orthomerica.com/education/schedule_sem.htm");
	menu.addSubItem("educationid", "Clinical Staff", "Clinical Staff",  "http://www.orthomerica.com/education/about_educators.htm");

	menu.addSubItem("calendarid", "Seminar Schedule", "Seminar Schedule",  "http://www.orthomerica.com/education/schedule_sem.htm");

	menu.showMenu();
}
