function showToolbar()
{

// AddItem(id, text, lastitem, location);
// AddSubItem(idParent, text, hint, location);

	var menu = new Menu();

	menu.addItem("ho", "HOME", false, "/index.html");
	menu.addItem("an", "ANNEXES", false, "/annexes.html");
	menu.addItem("ap", "APPENDICES", false, "/appendices.html");
	menu.addItem("rp", "RESPONSE PLANS", false, "/plans.html");
	menu.addItem("mi", "PDMP", false, "http://mceop.csepp.org/pdmp/");
	menu.addItem("cs", "CSEPP", false, "http://www.csepp.org");
	menu.addItem("bb", "Oregon Blue Book", false, "http://bluebook.state.or.us");
	menu.addItem("nw", "NWAC", true, "http://www.rrt10nwac.com");

	menu.addSubItem("ho", "Situation", "Situation", "/situation.html");
	menu.addSubItem("ho", "Command and Control", "Command and Control", "/command_control.html");
	menu.addSubItem("ho", "Threat Analysis", "Threat Analysis", "/threat_analysis.html");
	menu.addSubItem("ho", "Response Annexes", "Response Annexes", "/response_annexes.html");
	menu.addSubItem("ho", "Document Attachments", "Document Attachments", "/attachments.html");
	menu.addSubItem("ho", "Miscellaneous", "Miscellaneous", "/misc.html");

	menu.addSubItem("an", "Annex B - Radiation Ingestion Pathway", false, "/annexb/index.html");
	menu.addSubItem("an", "Annex C - Severe Weather", false, "/annexc/index.html");
	menu.addSubItem("an", "Annex D - Terrorism", false, "/annexd/index.html");
	menu.addSubItem("an", "Annex E - Community Wildfire Protection Plan", false, "/annexe/index.html");
	menu.addSubItem("an", "Annex F - UMESRO Emergency Communications Plan", false, "/annexf/index.html");


    menu.addSubItem("rp", "Morrow County Public Health Preparedness", "", "/mchealth/index.html");
    menu.addSubItem("rp", "Heppner Flash Flood Emergency Plan", "", "/flood/index.html");
    menu.addSubItem("rp", "Corps of Engineers: Willow Creek Flood Warning Procedure", "", "/corps/index.html");
	menu.addSubItem("rp", "Corps of Engineers: Willow Creek Lake Project - Guidelines For Flood Emergency Plans (PDF)", "", "/corps/guidelines.pdf");
	menu.addSubItem("rp", "Morrow County Behavioral Health Disaster Plan (PDF)", "", "/documents/MCBHDP.pdf");

/*
	menu.addSubItem("ab", "Assumptions", "Assumptions", "/annexb/assumptions_b.html");
	menu.addSubItem("ab", "Mission", "Mission", "/annexb/mission_b.html");
	menu.addSubItem("ab", "Concept of Operations", "Concept of Operations", "/annexb/concept_operations_b.html");
	menu.addSubItem("ab", "Organization Responsibilities", "Organization Responsibilities", "/annexb/organizations_b.html");
	menu.addSubItem("ab", "Attachment 1 - Emergency Call List", "Attachment 1 - Emergency Call List", "/annexb/attachment1_b.html");
	menu.addSubItem("ab", "Attachment 2 - Implementing Protective Actions", "Attachment 2 - Implementing Protective Actions", "/annexb/attachment2_b.html");

	menu.addSubItem("ac", "Purpose", "Purpose", "/annexc/purpose_c.html");
	menu.addSubItem("ac", "Situation and Assumptions", "Situation and Assumptions", "/annexc/situation_c.html");
	menu.addSubItem("ac", "Participating Agencies", "Participating Agencies", "/annexc/agencies_c.html");
	menu.addSubItem("ac", "Concept of Operations", "Concept of Operations", "/annexc/concept_operations_c.html");

	menu.addSubItem("ad", "Law Enforcement", "Law Enforcement", "/annexd/law_d.html");
	menu.addSubItem("ad", "Fire Department", "Fire Department", "/annexd/fire_d.html");
	menu.addSubItem("ad", "Public Works Department", "Public Works Department", "/annexd/publicworks_d.html");
	menu.addSubItem("ad", "Electric Utility", "Electric Utility", "/annexd/electric_d.html");
	menu.addSubItem("ad", "Administration", "Administration", "/annexd/administration_d.html");
	menu.addSubItem("ad", "Legal Department", "Legal Department", "/annexd/legal_d.html");
	menu.addSubItem("ad", "Finance Department", "Finance Department", "/annexd/finance_d.html");
	menu.addSubItem("ad", "Emergency Operations Center Staff Assignment", "Emergency Operations Center Staff Assignment", "/annexd/assignments_d.html");
*/
	menu.addSubItem("ap", "Appendix I: Umatilla/Morrow Emergency Service Radio Operators: Emergency Communications Plan", "Appendix II: Umatilla/Morrow Emergency Service Radio Operators: Emergency Communications Plan", "/radio/index.html");
	menu.addSubItem("ap", "Appendix II: ICS Forms", "Appendix II: ICS Forms", "/mceop_appendix_1.html");
	menu.addSubItem("ap", "Appendix III: NIMS Adoption", "Appendix IIII: NIMS Adoption", "/documents/MC-NIMS.PDF");

	menu.addSubItem("mi", "Pre-Disaster Mitigation Plan", "Pre-Disaster Mitigation Plan", "http://mceop.csepp.org/pdmp/");
	menu.addSubItem("cs", "Incident Response Action Plan", "Incident Response Action Plan", "http://www.csepp.org");

	menu.addSubItem("nw", "Northwest Area Contingency Plan", "Northwest Area Contingency Plan", "http://www.rrt10nwac.com/nwacp_document.htm");

	menu.showMenu();

}