//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("home", "Home", "", "../default.htm");
	menu.addItem("sfo", "Intoduction", "",  "sfo.htm");
	menu.addItem("contact", "Contacts", "",  "contact.htm");
	menu.addItem("Documents", "Documents", "",  "documents.htm");
	menu.addItem("prayers", "Prayers", "", "prayers.htm");
	menu.addItem("links", "SFO Links", "", "links.htm");
	menu.showMenu();
}