//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("Homeid", "Home Page", "OBC Home Page",  "../../index.html", "../../index.html");
	menu.addItem("mayinsightid", "May Insight", "May Insight",  null, null);

	menu.addSubItem("mayinsightid", "Cover", "Cover",  "coverpage.htm");
	menu.addSubItem("mayinsightid", "Thought For The Day", "Thought For The Day",  "philemon.htm");
	menu.addSubItem("mayinsightid", "Pentecost", "Pentecost",  "pentecost.htm");
	menu.addSubItem("mayinsightid", "Acorns", "Acorns",  "acorns.htm");
	menu.addSubItem("mayinsightid", "Spring Harvest", "Spring Harvest",  "springharvest.htm");
	menu.addSubItem("mayinsightid", "What Is Love?", "What Is Love?",  "whatislove.htm");
	menu.addSubItem("mayinsightid", " ", " ","coverpage.htm");
	menu.showMenu();
}