//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("takemehome", "All Souls", "All Souls",  null, null);
	menu.addItem("guest", "Visitor Info", "Visitor Info",  null, null);
	menu.addItem("member", "More Info", "More Info",  null, null);
	menu.addItem("denominational", "Unitarian Universalism", "Unitarian Universalism",  null, null);
	menu.addItem("rellinks", "Religious Links", "Religious Links",  null, null);

	menu.addSubItem("takemehome", "Homepage", "Homepage",  "http://allsoulsuushreveport.org/", "");
	menu.addSubItem("takemehome", "Site Map", "Site Map",  "http://www.allsoulsuushreveport.org/sitemap.html", "");

	menu.addSubItem("guest", "Map/Directions", "Map/Directions",  "http://allsoulsuushreveport.org/map.html", "");
	menu.addSubItem("guest", "New Member/Guest FAQ", "New Member/Guest FAQ",  "http://allsoulsuushreveport.org/newfaq.html", "");

	menu.addSubItem("guest", "Our Mission", "Our Mission", "http://allsoulsuushreveport.org/mission.html", "");
	menu.addSubItem("guest", "Our History", "Our History",  "http://allsoulsuushreveport.org/history.html", "");
	menu.addSubItem("guest", "Membership", "Membership",  "http://allsoulsuushreveport.org/member.html", "");
	menu.addSubItem("guest", "Visitor Guide", "Visitor Guide",  "http://allsoulsuushreveport.org/intro.html", "");
	menu.addSubItem("guest", "Our Principles", "Our Principles",  "http://allsoulsuushreveport.org/principles.html", "");

	menu.addSubItem("member", "Calendar", "Calendar",  "http://allsoulsuushreveport.org/calendar.html", "");
	menu.addSubItem("member", "Lyn - Our Minister", "Lyn - Our Minister",  "http://lyn.allsoulsuushreveport.org/", "");
	menu.addSubItem("member", "Children and Youth Ministry ", "Children and Youth Ministry",  "http://allsoulsuushreveport.org/kids_re.html", "");
    menu.addSubItem("member", "Newsletter", "Newsletter",  "http://allsoulsuushreveport.org/newsletter.html", "");
    menu.addSubItem("member", "Covenant Groups", "Covenant Groups", "http://allsoulsuushreveport.org/covenant_groups.html", "");
    menu.addSubItem("member", "Coffee Hour", "Coffee Hour",  "http://www.allsoulsuushreveport.org/coffee.html", "");
    menu.addSubItem("member", "Church Office", "Church Office",  "http://www.allsoulsuushreveport.org/office.html", "");
    menu.addSubItem("member", "Building Rental Info", "Building Rental Info",  "http://rental.allsoulsuushreveport.org/", "");
    menu.addSubItem("member", "Member Links", "Member Links",  "http://www.allsoulsuushreveport.org/bboard.html", "");
	menu.addSubItem("member", "Joys and Sorrows", "Joys and Sorrows",  "http://www.allsoulsuushreveport.org/joysandsorrows.html", "");


	menu.addSubItem("denominational", "Unitarian Universalist Association", "Unitarian Universalist Association",  "http://uua.org/", "");
    menu.addSubItem("denominational", "SW District (UUA)", "SW District (UUA)",  "http://www.swuuc.org/", "");
    menu.addSubItem("denominational", "Anti-Racism and Anti-Oppression", "Anti-Racism and Anti-Oppression",  "http://www.uua.org/programs/justice/antiracism/", "");
    menu.addSubItem("denominational", "DRUUMM - People of Color", "DRUUMM - People of Color",  "http://druumm.org/", "");
    menu.addSubItem("denominational", "Young Religious Unitarian Universalists", "YRUU - Youth", "http://www.uua.org/YRUU/news.html", "");
    menu.addSubItem("denominational", "UU Young Adult Network", "CUUYAN - Young Adults",  "http://www.uuyan.org/", "");
    menu.addSubItem("denominational", "Interweave - Bi/Gay/Lesbian/Transgender", "Interweave",  "http://interweave.uua.org/", "");


	menu.addSubItem("rellinks", "World Religion Day", "World Religion",  "http://www.worldreligionday.com/", "");
	menu.addSubItem("rellinks", "World Religion Day - Shreveport", "World Religion",  "http://www.wrds.org/", "");
	menu.addSubItem("rellinks", "Religious Tolerance", "Religious Tolerance",  "http://religioustolerance.org/", "");
	menu.addSubItem("rellinks", "Beliefnet - Religion News", "Beliefnet",  "http://beliefnet.com/", "");

	menu.showMenu();
}

