//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", "Return to Home Page",  "home.htm",  null);
	menu.addItem("aboutusid", "About Us", "Learn More About Our Organization", "about us.htm", null);
	menu.addItem("historyid", "Chapter History", "Chapter History", "chapter history.htm",  null);
	menu.addItem("picturesid", "Pictures", "Browse through our Pictures",  "pictures.htm",  null);
	menu.addItem("linksid", "Links", "Important Links",  "links.htm",  null);
	menu.addItem("requestsid", "Prayer Requests", "Prayer Requests", "prayer requests.htm",  null);
	menu.addItem("bibleid", "Online Bible", "Online Bible", "http://www.bible.com",  null);



	menu.showMenu();
}