//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("webmasterid", "Home", "Home",  "index.html", target="_self");
	menu.addItem("newsid", "Information", "Information",  null, null);
	menu.addItem("freedownloadid", "Community", "Local Community",  null, null);  
	menu.addItem("searchengineid", "Partnership", "Partnership",  null, null);
	menu.addItem("miscid", "Contact Us", "Contact Us",  null, null);

	menu.addSubItem("newsid", "About Lifeline", "About Lifeline",  "aboutlifeline2.htm", target="_self");
	menu.addSubItem("newsid", "Vision of Lifeline", "Vision of Lifeline",  "lifelinevision2.htm", target="_self");
	menu.addSubItem("newsid", "National and Global", "National and Global",  "nationalglobal2.htm", target="_self");
	menu.addSubItem("newsid", "Sponsors", "Sponsors",  "sponsors2.htm", target="_self");
	menu.addSubItem("newsid", "Lifeline Pictures", "Lifeline Pictures",  "pictures2.htm", target="_self");
	
	menu.addSubItem("freedownloadid", "Food & Supply Outreach", "Food & Supply Outreach",  "foodoutreach2.htm", target="_self");
	menu.addSubItem("freedownloadid", "For The Children", "For The Children",  "forthechildren2.htm", target="_self");
       	menu.addSubItem("freedownloadid", "Operation Blessing", "Operation Blessing",  "operation_blessing2.htm", target="_self");
        menu.addSubItem("freedownloadid", "Forms", "Forms",  "forms2.htm", target="_self");  

	
menu.addSubItem("searchengineid", "Local Business", "Local Business",  "localbusiness2.htm", target="_self");
	menu.addSubItem("searchengineid", "Grocers", "Groceres",  "grocers2.htm", target="_self");
	menu.addSubItem("searchengineid", "Donations", "Donations", "donations2.htm", target="_self");
	menu.addSubItem("searchengineid", "Donate Vehicles", "Donate Vehicles", "truckdonations.htm", target="_self");
	menu.addSubItem("searchengineid", "Volunteers", "Volunteers",  "volunteers2.htm", target="_self");

	menu.addSubItem("miscid", "Address & Phone Number", "Address & Phone Number",  "directory2.htm", target="_self");
	menu.addSubItem("miscid", "Board of Directors", "Directors",  "boardofdirectors.htm", target="_self");
	menu.addSubItem("miscid", "Email Us", "Email Us",  "emailus.htm", target="_self");
	
        menu.showMenu();
}