//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("menu", " MENU", "menu",  null, null);
	menu.addItem("fumc", " About Princeton FUMC", "FUMC Princeton WV",  null, null);
	menu.addItem("leader", " Leadership", "Leadership",  null, null);
	menu.addItem("ministry", " Ministries", "Ministries",  null, null);
	menu.addItem("youth", "Youth", "Youth",  null, null);
	menu.addItem("child", " Children", "Children",  null, null);
	menu.addItem("education", " Education", "Christian Education",  null, null);
	menu.addItem("misc", " Misc", "Sundries",  null, null);
	menu.addItem("home", " HOME", "HOME",  "index.html", null);

	menu.addSubItem("fumc", "Mission Statement", "Mission Statement",  "mission.html", "");
	menu.addSubItem("fumc", "Contact Information", "Contact Information",  "contact.html", "");
	menu.addSubItem("fumc", "Location", "Location",  "location.html", "");
	menu.addSubItem("fumc", "Biography", "Biography",  "bio.html", "");
	menu.addSubItem("fumc", "History", "History",  "history.html", "");

	menu.addSubItem("leader", "Pastor's Page", "Pastor's Page",  "message.html", "");
	menu.addSubItem("leader", "FUMC Staff", "FUMC Staff",  "staff.html", "");
	
	menu.addSubItem("ministry", "Supported Missions", "Supported Missions",  "ministry.html", "");
	menu.addSubItem("ministry", "Music", "Music",  "music.html", "");
	menu.addSubItem("ministry", "Puppets", "Puppets",  "puppet.html", "");
	menu.addSubItem("ministry", "Homework Helper", "Homework Helper",  "homework.html", "");
	menu.addSubItem("ministry", "Prayer Chain", "Prayer Chain",  "prayer.html", "");
	menu.addSubItem("ministry", "Family Ministries Center", "Family Ministries Center",  "fmc.html", "");
	menu.addSubItem("ministry", "Work Team", "Work Team",  "workteam.html", "");
	menu.addSubItem("ministry", "Drama Team", "Drama Team",  "drama.html", "");
	
	menu.addSubItem("youth", "Scholarship Program", "Scholarship Program",  "scholarship.html", "");
	menu.addSubItem("youth", "Scouting", "Scouting",  "scout.html", "");
	
	menu.addSubItem("child", "Preschool Story Hour", "Preschool Story Hour",  "story.html", "");
	menu.addSubItem("child", "Kids Stuff", "Kids Stuff",  "kidstuff.html", "");
	menu.addSubItem("child", "CEC Club", "CEC Club",  "cec.html", "");
	menu.addSubItem("child", "UPWARD Basketball", "UPWARD Basketball",  "upward.html", "");
	menu.addSubItem("child", "Words That Bring Me Closer To God", "Words That Bring Me Closer To God",  "words.html", "");
	menu.addSubItem("child", "Scouting", "Scouting",  "scout.html", "");

	menu.addSubItem("education", "Church School", "Church School",  "school.html", "");
	menu.addSubItem("education", "ALPHA", "ALPHA",  "alpha.html", "");
	menu.addSubItem("education", "DISCIPLE", "DISCIPLE",  "alpha.html#disciple", "");
	menu.addSubItem("education", "CHRISTIAN BELIEVER", "CHRISTIAN BELIEVER",  "alpha.html#christbeliever", "");
	menu.addSubItem("education", "Mid-Week Study", "Mid-Week Study",  "alpha.html#bibstudy", "");

	menu.addSubItem("misc", "OnLine Bulletin", "OnLine Bulletin",  "bulletin.html", "");
	menu.addSubItem("misc", "Activity Calendar", "Activity Calendar", "http://www.mychurchevents.com/calendar/calendar.aspx?list_by=calendar_month&ci=L6K5J4G1J4I3G1G1&igd=", "");
	menu.addSubItem("misc", "Site Index", "Site Index",  "listing.html", "");


	menu.showMenu();
}