//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",  "http://our.homewithgod.com/mrm/", "");
	menu.addItem("aboutusid", "About Us", "About Us",  "aboutus.html", "");
	menu.addItem("prayerid", "Prayer", "Prayer", "prayer.html", "");
	menu.addItem("cometojesusid", "Come to Jesus", "Come to Jesus",  "jesus.html", "");
	menu.addItem("linksid", "Links", "Links",  "link.html", "");
	menu.addItem("guestbookid", "Guestbook", "Guestbook",  "guestbook.html", "");
	menu.addItem("poemid", "A Poem", "A Poem",  "poem.html", "");

	menu.addSubItem("guestbookid", "Sign Guestbook", "Sign Guestbook",  "http://guestbook.homewithGod.com/cgi-bin/guestbook/guest.pl?43891083557103:1:0", "");
	menu.addSubItem("guestbookid", "View Guestbook", "View Guestbook",  "http://guestbook.homewithGod.com/cgi-bin/guestbook/multi.pl?43891083557103:1:0", "");


	menu.showMenu();
}