//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("home", "Home", "Home", "http://www.amai-eaglestyle.com/", null);
	
	menu.addItem("press", "Current Events and Testings", "Current Events and Testings", null, null);

	menu.addItem("background", "School Background and Information", "School Background and Information", null, null);
	
	menu.addItem("products", "Our Products", "Our Products", null, null);

	menu.addItem("trips", "School Trips", "School Trips", null, null);	
	
	
	menu.addSubItem("press", "Press Releases", "Press Releases", "http://www.amai-eaglestyle.com/press.html");
	menu.addSubItem("press", "Seminars", "Seminars", "http://www.amai-eaglestyle.com/press/Archives/seminars.html");
	menu.addSubItem("press", "Guest Masters", "Guest Masters", "http://www.amai-eaglestyle.com/press/Archives/guestmasters.html");
	menu.addSubItem("press", "", "", "");
	
	menu.addSubItem("background", "Our History", "Our History",  "http://www.amai-eaglestyle.com/SchoolBackground/history.html");
	menu.addSubItem("background", "Our Programs", "Our Programs",  "http://www.amai-eaglestyle.com/SchoolBackground/programs.html");
	menu.addSubItem("background", "Our Locations", "Our Locations",  "http://www.amai-eaglestyle.com/SchoolBackground/locations.html");
	menu.addSubItem("background", "The Staff", "The Staff",  "http://www.amai-eaglestyle.com/SchoolBackground/instructors.html");
	menu.addSubItem("background", "Red Tops", "Red Tops",  "http://www.amai-eaglestyle.com/SchoolBackground/redtop.html");
	menu.addSubItem("background", "Superkicks Program", "Superkicks Program",  "http://www.amai-eaglestyle.com/SchoolBackground/superkick.html");
	menu.addSubItem("background", "Katas", "Katas",  "http://www.amai-eaglestyle.com/SchoolBackground/katas.html");
	menu.addSubItem("background", "Brochure", "Brochure",  "http://www.amai-eaglestyle.com/SchoolBackground/brochure.html");
	menu.addSubItem("background", "", "", "");
	
	menu.addSubItem("products", "School Textbook", "School Textbook",  "http://www.amai-eaglestyle.com/OurProducts/textbook.html");
	menu.addSubItem("products", "Learn Takedowns DVD", "Learn Takedowns DVD",  "http://www.amai-eaglestyle.com/OurProducts/TakedownsDVD.html");
	menu.addSubItem("products", "Children's Self-Defense and Awareness DVD", "Children's Self-Defense and Awareness DVD",  "http://www.amai-eaglestyle.com/OurProducts/ChildrensDVD.html");
	menu.addSubItem("products", "Be Safe Physically and Mentally Book", "Be Safe Physically and Mentally Book",  "http://www.amai-eaglestyle.com/OurProducts/BeSafe.html");
	menu.addSubItem("products", "", "", "");
	
	menu.addSubItem("trips", "China Trip", "China Trip",  "http://www.amai-eaglestyle.com/Trips/china.html");
	menu.addSubItem("trips", "Russia Trip", "Russia Trip",  "http://www.amai-eaglestyle.com/Trips/russia.html");
	menu.addSubItem("trips", "Japan Trip", "Japan Trip", "http://www.amai-eaglestyle.com/Trips/japan.html");
	menu.addSubItem("trips", "Australia Trip", "Australia Trip", "http://www.amai-eaglestyle.com/Trips/australia.html");
	menu.addSubItem("trips", "Italy Trip", "Italy Trip", "http://www.amai-eaglestyle.com/Trips/italy.html");
	menu.addSubItem("trips", "", "", "");
	
	menu.showMenu();
}
