//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",  null, null);
	menu.addItem("tabernacleid", "Tabernacle Of David", "Tabernacle Of David",  null, null);
	menu.addItem("flmid", "FLM", "FLM",  null, null);
	menu.addItem("clipsid", "Clips", "Clips",  null, null);
	menu.addItem("linksid", "Links", "Links",  null, null);

	menu.addSubItem("homeid", "Intro Page", "Intro Page",  "http://www.firstluv.org/intro.htm", "");
	menu.addSubItem("homeid", "Main Page", "Main Page",  "http://www.firstluv.org/main.asp", "");

	menu.addSubItem("tabernacleid", "Introduction", "Introduction",  "http://www.firstluv.org/tbrncle.htm", "");
	menu.addSubItem("tabernacleid", "HTML Version", "HTML Version",  "http://www.firstluv.org/tod/contents.htm", "");
	menu.addSubItem("tabernacleid", "Ebook Version", "Ebook Version",  "http://www.firstluv.org/download.htm", "");
	
	menu.addSubItem("flmid", "About FLM", "About FLM",  "http://www.firstluv.org/about.htm", "");
	menu.addSubItem("flmid", "We Believe", "We Believe",  "http://www.firstluv.org/articles.htm", "");
	menu.addSubItem("flmid", "Prophetic Worship", "Prophetic Worship",  "http://www.firstluv.org/prophetic.htm", "");
	menu.addSubItem("flmid", "Prophetic Song", "Prophetic Song",  "http://www.firstluv.org/prophetic_song.htm", "");

	menu.addSubItem("clipsid", "Mighty", "Mighty",  "http://www.firstluv.org/movies/father.html", "");
	menu.addSubItem("clipsid", "Good Samaritan", "Good Samaritan",  "http://www.firstluv.org/movies/samaritan.html", "");
	menu.addSubItem("clipsid", "Here To Love You", "Here To Love You", "http://www.firstluv.org/movies/awesom.html", "");
	menu.addSubItem("clipsid", "The Story", "The Story",  "http://www.firstluv.org/movies/shining.html", "");
	menu.addSubItem("clipsid", "Upon The Cross", "Upon The Cross",  "http://www.firstluv.org/movies/on the cross.html", "");

	menu.addSubItem("linksid", "Christian Links", "Christian Links",  "http://www.firstluv.org/links.htm", "");

	menu.showMenu();
}