//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("home", "Home", "Home",  "index.html", "");
	menu.addItem("about", "About Us", "About Us",  null, null);
	menu.addItem("offer", "What We Offer", "What We Offer",  null, null);
	menu.addItem("events", "Upcoming Events", "Upcoming Events",  "events.htm", "");
	menu.addItem("qanda", "Dr. J’s Q’s & A’s", "Dr. J’s Q’s & A’s",  "qa.htm", "");
	menu.addItem("info", "More Information", "More Information",  null, null);
	menu.addItem("store", "Online Store", "Online Store",  null, null);
	menu.addItem("login", "Login", "Login", "clientarea.html", "");

	menu.addSubItem("about", "In The News", "In The News",  "news.htm", "");
	menu.addSubItem("about", "Executive Director", "Executive Diretor",  "director.htm", "");
	menu.addSubItem("about", "Our Ministry", "Our Ministry",  "about.htm", "");
	menu.addSubItem("about", "Advisory Board", "Advisory Board",  "board.htm", "");
	menu.addSubItem("about", "RFS Ministries - Brochure (PDF)", "RFS Ministries - Brochure (PDF)",  "pdfs/rfsm.pdf", "_blank");
	menu.addSubItem("about", "Created by God - Brochure (PDF)", "Created by God - Brochure (PDF)",  "pdfs/cbg.pdf", "_blank");

	menu.addSubItem("offer", "Created by God", "Created by God",  "cbg.htm", "");
	menu.addSubItem("offer", "Multigenerational Programs", "Multigenerational Programs",  "mgp.htm", "");
	menu.addSubItem("offer", "Music Programs", "Music Programs",  "music.htm", "");

	menu.addSubItem("info", "RFS Ministries - Brochure (PDF)", "RFS Ministries - Brochure (PDF)",  "pdfs/rfsm.pdf", "_blank");
	menu.addSubItem("info", "Created by God - Brochure (PDF)", "Created by God - Brochure (PDF)",  "pdfs/cbg.pdf", "_blank");
	menu.addSubItem("info", "Created by God - Recommended Resources (PDF)", "Created by God - Recommended Resources (PDF)",  "pdfs/res-cbg.pdf", "_blank");
	menu.addSubItem("info", "Created by God - Endorsements", "Created By God - Endorsements", "endorsecbg.htm", "");
	menu.addSubItem("info", "Other Recommended Resources(PDF)", "Other Recommended Resources (PDF)",  "pdfs/res-noncbg.pdf", "_blank");
	menu.addSubItem("info", "Other Endorsements", "Other Endorsements", "endorsec.htm", "");
	menu.addSubItem("info", "Information Request", "Information Request", "request.htm", "");

	menu.addSubItem("store", "Christian Book Distributors", "Christian Book Distributors", "cbd.htm", "");
	menu.addSubItem("store", "Cokesbury Book Store", "Cokesbury Book Store", "cokesbury.htm", "");
	menu.addSubItem("store", "Upper Room/Discipleship Resources", "Upper Room/Discipleship Resources", "http://www.upperroom.org/bookstore/description.asp?item_id=180103&category=&sub_category=", "_blank");

	menu.showMenu();
}
