//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",  null, null);
	menu.addItem("howtohelpid", "How to Help", "How to Help",  null, null);
	menu.addItem("serviceid", "Service", "Service",  null, null);
	menu.addItem("eventid", "Events", "Events",  null, null);
	menu.addItem("wishid", "Wish List", "Wish List",  null, null);
    menu.addItem("aboutid", "About Us", "About Us",  null, null);
	menu.addItem("horseid", "Horse Views", "Horse Views",  null, null);
	menu.addItem("contactid", "Contact Us", "Contact Us",  null, null);

	menu.addSubItem("homeid", "Home", "Home",  "http://www.equinesecondchance.org/index.html", "");

	menu.addSubItem("howtohelpid", "Donations", "Donations",  "http://www.equinesecondchance.org/donations.htm", "");
	menu.addSubItem("howtohelpid", "Volunteer", "Volunteer",  "http://www.equinesecondchance.org/volunteer.htm", "");
	menu.addSubItem("howtohelpid", "Adopt a Horse", "Adopt a Horse",  "http://www.equinesecondchance.org/sponsor.htm", "");

	menu.addSubItem("serviceid", "How to Adopt A Horse", "How to Adopt A Horse",  "http://www.equinesecondchance.org/adopt.htm", "");
	menu.addSubItem("serviceid", "Programs", "Programs",  "http://www.equinesecondchance.org/programs.htm", "");
	menu.addSubItem("serviceid", "Other Services", "Other Services",  "http://www.equinesecondchance.org/othersvcs.htm", "");
	
	
	menu.addSubItem("eventid", "News", "News",  "http://www.equinesecondchance.org/news.htm", "");
	menu.addSubItem("eventid", "Articles", "Articles",  "http://www.equinesecondchance.org/articles.htm", "");
	menu.addSubItem("eventid", "Events", "Events",  "http://www.equinesecondchance.org/events.htm", "");

	menu.addSubItem("wishid", "Wish List", "Wish List",  "http://www.equinesecondchance.org/wishlist.htm", "");

	menu.addSubItem("aboutid", "About Us", "About Us",  "http://www.equinesecondchance.org/aboutus.htm", "");
	menu.addSubItem("aboutid", "Mission Statement", "Mission Statement",  "http://www.equinesecondchance.org/mission.htm", "");
	menu.addSubItem("aboutid", "Board Members", "Board Members",  "http://www.equinesecondchance.org/board.htm", "");
	menu.addSubItem("aboutid", "Staff", "Staff",  "http://www.equinesecondchance.org/staff.htm", "");

	menu.addSubItem("horseid", "Horse View", "Horse View",  "http://www.equinesecondchance.org/horseview.htm", "");

	menu.addSubItem("contactid", "Contact Us", "Contact Us",  "http://www.equinesecondchance.org/contact.htm", "");
	
	
	menu.showMenu();
}