//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", "Go Back To The Trinity Home Page",  "http://www.trinityum.org", null);
	menu.addItem("bibleid", "Bible Study Aids", "Bible Study Aids",  null, null);
	menu.addItem("calendarid", "Calendars", "Calendars",  null, null);
	menu.addItem("contactid", "Contact Us", "Contact Us",  "http://www.trinityum.org/contact.htm", null);
	menu.addItem("historyid", "History of Trinity", "History of Trinity",  "http://www.trinityum.org/history.htm", null);
	menu.addItem("linksid", "Links", "Links",  null, null);
	menu.addItem("locationid", "Location", "Location",  "http://www.trinityum.org/location.htm", null);
	menu.addItem("ministriesid", "Ministries", "Ministries",  "http://www.trinityum.org/ministries.htm", null);
	menu.addItem("staffid", "Staff", "Staff",  "http://www.trinityum.org/staff.html", null);
	menu.addItem("prayerid", "Submit A Prayer Request", "Submit A Prayer Request",  "mailto: johnwesley@trinityum.org?subject=Prayer Request", null);
	menu.addItem("sermonid", "Sermons", "Sermons",  "http://www.trinityum.org/sermons.html", null);
	//menu.addItem("triuneid", "Triune", "Triune",  "http://www.trinityum.org/triune.html", null);

	
	
	

	menu.addSubItem("bibleid", "Bible Reading Schedule", "Bible Reading Schedule", "http://www.trinityum.org/biblereading.htm", "");
	menu.addSubItem("bibleid", "Bible Search", "Search Multiple Translations of the Bible", "http://www.trinityum.org/biblesearch.htm", "");
	menu.addSubItem("locationid", "Our Location and How To Get Here", "Our Location and How To Get Here",  "http://www.trinityum.org/location.htm", "");
	
	menu.addSubItem("calendarid", "Weekly Schedule of Events", "Weekly Schedule of Events",  "http://www.trinityum.org/wk_schedule.htm", "");
	menu.addSubItem("calendarid", "2007 Monthly Calendar of Special Events", "2007 Monthly Calendar of Special Events",  "http://kcc.sharepointsite.net/trinitycal/webcalendar/Lists/Trinity%20Calendar%20of%20Events/calendar.aspx", "_blank");
	menu.addSubItem("calendarid", "2006 Monthly Calendar of Special Events", "2006 Monthly Calendar of Special Events",  "http://www.trinityum.org/calendar/january06.htm", "");
	menu.addSubItem("calendarid", "2005 Monthly Calendar of Special Events", "2005 Monthly Calendar of Special Events",  "http://www.trinityum.org/calendar/january05.htm", "");

	menu.addSubItem("linksid", "United Methodist Church", "United Methodist Church", "http://www.umc.org", "_blank");
	menu.addSubItem("linksid", "Florida Conference of The United Methodist Church", "Florida Conference of The United Methodist Church", "http://www.flumc.org", "_blank");
	menu.addSubItem("linksid", "Cokesbury", "Cokesbury", "http://www.cokesbury.com", "_blank");
	menu.addSubItem("linksid", "King James Bible Online", "King James Bible Online", "http://etext.virginia.edu/kjv.browse.html", "_blank");
	menu.addSubItem("linksid", "NIV Bible Search", "NIV Bible Search", "http://www.ibs.org/niv/index.php", "_blank");	
	menu.addSubItem("linksid", "The Upper Room", "The Upper Room", "http://www.upperroom.com", "_blank");
	
	
menu.showMenu();
}