//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("homeid", "Home", "Home",  null, null);
	menu.addItem("newsid", "News", "News",  null, null);
	menu.addItem("karateid", "The Karate We Teach", "Karate", null, null);
	menu.addItem("termsid", "FKC Materials", "FKC Materials", null, null);
	menu.addItem("classid", "Classes", "Classes",  null, null);
	menu.addItem("policyid", "Policies", "Policies",  null, null);
	menu.addItem("instructorid", "Instructors", "Instructors",  null, null);
	menu.addItem("galleryid", "Gallery", "Gallery",  null, null);

	menu.addSubItem("homeid", "Home Page", "Home Page",  "index.html", "");
	menu.addSubItem("homeid", "Map to Dojo", "map to dojo",  "map.html", "");
	menu.addSubItem("homeid", "Links", "Links",  "links.html", "");
	menu.addSubItem("homeid", "Contact Us", "contact us",  "contact.html", "");

	menu.addSubItem("newsid", "FKC Forum", "FKC Forum",  "forum", "");
	menu.addSubItem("newsid", "What's New?", "What's New",  "new.html", "");
	menu.addSubItem("newsid", "In Memorium", "In Memorium",  "bob_hayford.html", "");
	menu.addSubItem("newsid", "Testimonials", "Testimonials",  "testimonials.html", "");
	menu.addSubItem("newsid", "Kudos", "Kudos",  "kudos.html", "");
	
	menu.addSubItem("karateid", "Shito-Ryu", "Shito-Ryu",  "shitoryu.html", "");
	menu.addSubItem("karateid", "History of Shito-Ryu", "History of Shito-Ryu",  "history.html", "");
	menu.addSubItem("karateid", "Gosoku-Ryu", "Gosoku-Ryu",  "gosokuryu.html", "");
	menu.addSubItem("karateid", "School Motto", "School Motto",  "dojo_kun.html", "");
	menu.addSubItem("karateid", "Mission Statement", "Mission Statement",  "mission.html", "");
	menu.addSubItem("karateid", "Kata of FKC", "Kata",  "kata.html", "");
	menu.addSubItem("karateid", "Black Belt Kata", "Black Belt Kata",  "BB_kata.html", "");
	menu.addSubItem("karateid", "FKC IKA and You", "FKC IKA and You",  "IKA.html", "");

	menu.addSubItem("termsid", "FKC Welcome Packet (PDF)", "FKC Welcome Packet (PDF)",  "Welcome_Packet.pdf", "");
	menu.addSubItem("termsid", "Rank Exam Form", "Rank Exam Form",  "Rank_Exam_Form.doc", "");
	menu.addSubItem("termsid", "Written Test", "Written Test",  "written_test.html", "");
	menu.addSubItem("termsid", "Kinderate Materials", "Kinderate Materials",  "kinderate_materials.html", "");
	menu.addSubItem("termsid", "Kazu (Counting)", "Kazu (Counting)",  "kazu.html", "");
	menu.addSubItem("termsid", "Yogo (Misc Terms)", "Yogo (Misc Terms)",  "yogo.html", "");
	menu.addSubItem("termsid", "Gishiki (Ceremony)", "Gishiki (Ceremony)",  "gishiki.html", "");
	menu.addSubItem("termsid", "Kihon (Basics)", "Kihon (Basics)",  "kihon.html", "");

	menu.addSubItem("classid", "Schedule", "schedule",  "schedule.html", "");
	menu.addSubItem("classid", "Fees", "fees",  "fees.html", "");
	menu.addSubItem("classid", "Special Classes", "special classes",  "special.html", "");
	menu.addSubItem("classid", "How to Get Started", "start",  "howtostart.html", "");
	menu.addSubItem("classid", "Rank Exams", "exams",  "exams.html", "");
	menu.addSubItem("classid", "Beginning Karate Stripe Requirements", "Stripe Reqs",  "stripe_reqs.html", "");
	menu.addSubItem("classid", "Intermediate Karate Stripe Requirements", "Stripe Reqs 2",  "stripe_reqs2.html", "");
	menu.addSubItem("classid", "Advanced Karate Stripe Requirements", "Stripe Reqs 3",  "stripe_reqs3.html", "");

	menu.addSubItem("policyid", "General Policy", "General Policy",  "gen_policy.html", "");
	menu.addSubItem("policyid", "Karate Policy", "Karate Policy",  "kar_policy.html", "");
	menu.addSubItem("policyid", "Rules", "Rules",  "rules.html", "");
	menu.addSubItem("policyid", "Etiquette", "Etiquette",  "etiquette.html", "");

	menu.addSubItem("instructorid", "Shihan Robert A. Martin", "Shihan Robert A. Martin",  "shihan.html", "");
        menu.addSubItem("instructorid", "Shihan Leo Gonzalez", "Shihan Leo Gonzalez",  "leo.html", "");	                   
	menu.addSubItem("instructorid", "Shihan Dai Richard Higbee", "Shihan Dai Richard Higbee",  "richard.html", "");
	menu.addSubItem("instructorid", "Sensei Mark Glover", "Sensei Mark Glover",  "mark.html", "");
	menu.addSubItem("instructorid", "Sensei Brian Martin", "Sensei Brian Martin",  "brian.html", "");

	menu.addSubItem("galleryid", "Youth Classes", "Youth Classes",  "youthpics.html", "");
	menu.addSubItem("galleryid", "Family Classes", "Family Classes",  "familypics.html", "");
	menu.addSubItem("galleryid", "Special Classes", "Special Classes",  "specialpics.html", "");
	menu.addSubItem("galleryid", "Tournament", "Tournament",  "tournamentpics.html", "");

	menu.showMenu();
}