//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("angelinfo", "Information", "Information",  null, null);
	menu.addItem("currentprojects", "On Going Efforts", "On Going Efforts",  null, null);
	menu.addItem("events", "Events", "Events",  null, null);
	menu.addItem("media", "In The Media", "In The Media",  null, null);
	menu.addItem("photo", "Photo Album", "Photo Album",  null, null);
	menu.addItem("supporters", "Our Supporters", "Our Supporters",  null, null);
	menu.addItem("wtcmemorial", "WTC Memorial", "WTC Memorial",  null, null);
	menu.addItem("supportmilitary", "United We Stand", "United We Stand",  null, null);
	menu.addItem("inourhearts", "Always Remember", "Always Remember",  null, null);
	menu.addItem("visitnyc", "Visit NYC", "Visit NYC",  null, null);
	menu.addItem("contact", "Contact Us", "Contact Us",  null, null);
	
	menu.addSubItem("events", "Past Events", "Past Events", "../../pastevents.html", "");
	menu.addSubItem("events", "Future Events", "Future Events", "../../futureevents.html", "");
	menu.addSubItem("events", "Contact Us", "Contact Us",  "../../contact.html", "");
	
	menu.addSubItem("wtcmemorial", "What's New At Ground Zero", "What's New At Ground Zero",  "../../whatsnewatgz.html", "");
	menu.addSubItem("wtcmemorial", "Memorial Competition", "Memorial Competition",  "../../wtcmemorial.html", "");
	menu.addSubItem("wtcmemorial", "WTC Site's Architect", "WTC Site's Architect",  "../../libeskind.html", "");
	menu.addSubItem("wtcmemorial", "Advocacy Efforts at Ground Zero", "Advocacy Efforts at Ground Zero",  "../../advocacyeffortsatgz.html", "");
	menu.addSubItem("wtcmemorial", "Contact Us", "Contact Us",  "../../contact.html", "");
	
	menu.addSubItem("currentprojects", "On Going Efforts", "On Going Efforts",  "../../ongoingefforts.html", "");
	menu.addSubItem("currentprojects", "Project Remember Me", "Project Remember Me",  "../../projectrememberme.html", "");
	menu.addSubItem("currentprojects", "Contact Us", "Contact Us",  "../../contact.html", "");


	menu.addSubItem("supportmilitary", "Support Our Military", "Support Our Military",  "../../show_support.html", "");
	menu.addSubItem("supportmilitary", "United We Stand Rally", "United We Stand Rally",  "../../rally.html", "");
	menu.addSubItem("supportmilitary", "Tie A Yellow Ribbon Campaign", "Tie A Yellow Ribbon Campaign",  "../../support_yellow_ribbon.html", "");
	menu.addSubItem("supportmilitary", "Operation Sending Smiles Across the Miles ", "Operation Sending Smiles Across the Miles ",  "../../sending_smiles.html", "");
	menu.addSubItem("supportmilitary", "Messages of support to our troops  ", "Messages of support to our troops  ",  "../../support_message_to_troops.html", "");
	menu.addSubItem("supportmilitary", "Free Patriotic Ideas", "Free Patriotic Ideas",  "../../patriotism.html", "");
	menu.addSubItem("supportmilitary", "Tin Can Sailors", "Tin Can Sailors",  "../../tincansailors.html", "");
	menu.addSubItem("supportmilitary", "United States Marine Corps", "United States Marine Corps",  "../../usmc.html", "");
	menu.addSubItem("supportmilitary", "Contact Us", "Contact Us",  "../../contact.html", "");
	

	menu.addSubItem("angelinfo", "Story of Adam's Angels", "Story of Adam's Angels",  "../../story_of_aa.html", "");
	menu.addSubItem("angelinfo", "Become An Angel", "Become An Angel",  "../../become_an_angel.html", "");
	menu.addSubItem("angelinfo", "Join Our Support Group", "Join Our Support Group",  "../../join_sup_grp.html", "");
	menu.addSubItem("angelinfo", "Monetary Donations", "Monetary Donations",  "../../monetary_donations.html", "");
	menu.addSubItem("angelinfo", "Who We Are", "Who We Are",  "../../aboutus.html", "");
	menu.addSubItem("angelinfo", "Contact Us", "Contact Us",  "../../contact.html", "");

	menu.addSubItem("inourhearts", "About Adam", "About Adam",  "../../about_adam.html", "");
	menu.addSubItem("inourhearts", "Never Forget", "Never Forget",  "../../well_never_forget.html", "");
	menu.addSubItem("inourhearts", "Thoughts Poems Stories", "Thoughts Poems Stories", "../../poems_stories_thoughts.html", "");
	menu.addSubItem("inourhearts", "Memorial Pins", "Memorial Pins",  "../../memorial_pins.html", "");
	menu.addSubItem("inourhearts", "Contact Us", "Contact Us",  "../../contact.html", "");

	menu.addSubItem("media", "Angels in the Media", "Angels in the Media",  "../../media.html", "");
	menu.addSubItem("media", "Contact Us", "Contact Us",  "../../contact.html", "");
	
	menu.addSubItem("supporters", "Corporate Angels", "Corporate Angels",  "../../corporate_angels.html", "");
	menu.addSubItem("supporters", "Amazing Angels", "Amazing Angels",  "../../amazing_angels.html", "");
	menu.addSubItem("supporters", "Links", "Links",  "../../links.html", "");
	menu.addSubItem("supporters", "Contact Us", "Contact Us",  "../../contact.html", "");
	
	menu.addSubItem("photo", "Photo Album", "Photo Album",  "../../photo_album/index.html", "");

	menu.addSubItem("visitnyc", "Visit NYC", "Visit NYC",  "../../visit_nyc.html", "");
	
	menu.addSubItem("contact", "Contact Us", "Contact Us",  "../../contact.html", "");

	menu.showMenu();
}