//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("aboutid", "About Us", "About Us",  null, null);
	menu.addItem("awardid", "Awards", "Awards",  null, null);
	menu.addItem("contractid", "Contracts", "Contracts",  null, null);
	menu.addItem("staffid", "Union Staff", "Union Staff",  null, null);
	menu.addItem("documentid", "Document Listings", "Document Listings",  null, null);
	menu.addItem("polid", "Political Action", "Political Action",  null, null);
	menu.addItem("benefitsid", "Benefits", "Benefits",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);
	menu.addItem("linksid", "Links", "Links",  null, null);
	

	menu.addSubItem("aboutid", "Who We Are", "Who We Are",  "http://www.dc37local2021.com/ABOUT.htm", "");
	menu.addSubItem("aboutid", "Contact Us", "Contact Us",  "http://www.dc37local2021.com/mailbox.htm", "");
	

	menu.addSubItem("awardid", "Presentations", "Presentations",  "http://www.dc37local2021.com/awards.htm", "");

	menu.addSubItem("contractid", "City-Wide Contract", "City-Wide Contract",  "http://www.dc37local2021.com/City-wide1.htm", "");
	menu.addSubItem("contractid", "2021 Unit Contract", "2021 Unit Contract",  "http://www.dc37local2021.com/Unit_Contract.htm", "");
	menu.addSubItem("contractid", "2021 Constitution", "2021 Constitution",  "http://www.dc37local2021.com/constitution.htm", "");
	
	
	menu.addSubItem("staffid", "2021 Union Officers", "2021 Union Officers",  "http://www.dc37local2021.com/Union_Officers.htm", "");
	menu.addSubItem("staffid", "2021 Committees", "2021 Committees",  "http://www.dc37local2021.com/committees.htm", "");
	menu.addSubItem("staffid", "DC 37 Union Officers", "DC 37 Union Officers",  "http://www.dc37local2021.com/DC%2037%20OFFICERS.htm", "");
	
	menu.addSubItem("documentid", "2021 Meetings", "2021 Meetings",  "http://www.dc37local2021.com/meetings.htm", "");
	menu.addSubItem("documentid", "Printable Forms", "Printable Forms",  "http://www.dc37local2021.com/forms.htm", "");
	menu.addSubItem("documentid", "OTB Conversions", "OTB Conversions",  "http://www.dc37local2021.com/Conversion_List.htm", "");
	menu.addSubItem("documentid", "OTB Job Opportunties", "OTB Job Opportunties",  "http://www.dc37local2021.com/JOB%20OPPORTUNITIES.htm", "");
	menu.addSubItem("documentid", "OTB Memos", "OTB Memos",  "http://www.dc37local2021.com/memo.htm", "");
	
	menu.addSubItem("polid", "Political Action Committee (PAC)", "Political Action Committee (PAC", "http://www.dc37local2021.com/poliagenda.htm", "");

	menu.addSubItem("benefitsid", "City Health Plans", "City Health Plans",  "http://www.dc37local2021.com/health.htm", "");
	menu.addSubItem("benefitsid", "DC 37 Dental", "DC 37 Dental",  "http://www.dc37local2021.com/dental1.htm", "");
	menu.addSubItem("benefitsid", "DC 37 Prescription", "DC 37 Prescription", "http://www.dc37local2021.com/prescription.htm", "");
	menu.addSubItem("benefitsid", "DC 37 Vision", "DC 37 Vision",  "http://www.dc37local2021.com/vision.htm", "");
	menu.addSubItem("benefitsid", "DC 37 Legal (MELS)", "DC 37 Legal (MELS)",  "http://www.dc37local2021.com/MELS.htm", "");
	
	menu.addSubItem("benefitsid", "All Other", "All Other",  "http://www.dc37local2021.com/benefits.htm", "");

	menu.addSubItem("miscid", "2021 E-mail Alerts", "2021 E-mail Alerts",  "http://www.dc37local2021.com/ALERTS.htm", "");
	menu.addSubItem("miscid", "Current News", "Current News",  "http://www.dc37local2021.com/news.htm", "");
	menu.addSubItem("miscid", "OTB Branch Locator", "OTB Branch Locator",  "http://www.dc37local2021.com/branchlist.htm", "");
	menu.addSubItem("miscid", "911 Memorial", "911 Memorial",  "http://www.dc37local2021.com/chet.htm", "");	
	
	
	menu.addSubItem("linksid", "Site Map", "Site Map",  "http://www.dc37local2021.com/sitemap.htm", "");
	menu.addSubItem("linksid", "Web Sites", "Web Sites",  "http://www.dc37local2021.com/links.htm", "");
	menu.addSubItem("linksid", "Press Room", "Press Room",  "http://www.dc37local2021.com/pressroom.htm", "");
		
	menu.showMenu();
}