//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", "index.html", "");
	menu.addItem("aboutusid", "About Us", "About Us",  null, null);
	menu.addItem("programid", "Programs", "Programs",  null, null);
	menu.addItem("resinfoid", "Admission & Application", "Admission & Application",  null, null);
	menu.addItem("successid", "Success Stories", "Success Stories", null, null);
	menu.addItem("supportid", "Donate Now", "Donate Now",  null, null);
	menu.addItem("volunteerid", "Volunteer", "Volunteer",  null, null);
	menu.addItem("golfid", "Special Events", "Special Events", null, null);
	menu.addItem("newsid", "News", "News", null, null);
	menu.addItem("linksid", "Links", "Links", "links.html", "");
	
// About Us Menu
	menu.addSubItem("aboutusid", "History", "History",  "about.html", "");
	menu.addSubItem("aboutusid", "FAQ", "FAQ",  "faq.html", "");
	menu.addSubItem("aboutusid", "Board of Directors", "Board of Directors",  "boardofdirectors.html", "");
	menu.addSubItem("aboutusid", "Advisory Board", "Advisory Board", "advisorsboard.html", "");
	menu.addSubItem("aboutusid", "Contact Us", "Contact Us",  "contact.html", "");
	
// Program Menu
	menu.addSubItem("programid", "Short Term", "Short Term",  "program.html", "");
	menu.addSubItem("programid", "Long Term", "Long Term",  "longterm.html", "");
	menu.addSubItem("programid", "Life Action Plan", "Life Action Plan",  "lifeaction.html", "");
	menu.addSubItem("programid", "Job Training", "Job Training",  "jobtraining.html", "");
	menu.addSubItem("programid", "Scholarships", "Scholarships",  "scholarships.html", "");
// Show Support Menu	
	menu.addSubItem("supportid", "Make A Gift", "Make A Gift",  "gift.html", "");
	menu.addSubItem("supportid", "In-Kind Donations", "In-Kind Donations",  "inkind.html", "");
// Volunteer Menu
	menu.addSubItem("volunteerid", "Day of Caring", "Day of Caring", "dayofcaring.html", "");	
	menu.addSubItem("volunteerid", "Dinner Fellowship", "Dinner Fellowship",  "dinnfell.html", "");
	menu.addSubItem("volunteerid", "Volunteer Innkeeper", "Volunteer Innkeeper",  "VolunteerInfo.html", "");
// Resident Information Menu
	menu.addSubItem("resinfoid", "Admission Criteria", "Admission Criteria",  "admincrit.html", "");
	menu.addSubItem("resinfoid", "Application", "Application",  "application.html", "");
// Success Stories
	menu.addSubItem("successid", "Clarence", "Clarence", "clarencesuccessstory.html", "");
// 2009 Golf Tournament Menu
	menu.addSubItem("golfid", "2009 Golf Tournament", "2009 Golf Tournament", "golfwhenandwhere.html", "");
// News Menu
	menu.addSubItem("newsid", "Job Opportunities", "Job Opportunities", "jobopp.html", "");
	menu.addSubItem("newsid", "Press Releases", "Press Releases", "pressrelease.html", "");
	menu.addSubItem("newsid", "Gateway News", "Gateway News", "news.html", "");
	


	
	menu.showMenu();
}
