//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("webmasterid", "Home", "", null, null);

	menu.addItem("miscid", "All About Michael", "",  null, null);

	menu.addItem("concert", "Concert Schedule", "",  null, null);

	menu.addItem("searchengineid", "Pops Shows For Orchestras ", "",  null, null);

	menu.addItem("freedownloadid", "Michael's CDs", "",  null, null);

	menu.addItem("music", "Special Occasions", "",  null, null);

	menu.addItem("newsid", "Contact Us", "Contact Michael",  null, null);



	menu.addSubItem("webmasterid", "Home Page", "",  "index.html", "");

	

	menu.addSubItem("newsid", "Contact Info", "",  "contact.htm", "");



        menu.addSubItem("freedownloadid", "Michael's CDs", "",  "cd.htm", "");

        menu.addSubItem("freedownloadid", "Amazing Grace", "",  "amazinggrace.htm", "");

        menu.addSubItem("freedownloadid", "What a Wonderful World", "",  "wonderfulworld.htm", "");

	menu.addSubItem("freedownloadid", "Bewitched", "",  "bewitchedcd.htm", "");

	menu.addSubItem("freedownloadid", "Silent Night", "",  "silentnight.htm", "");

	menu.addSubItem("freedownloadid", "The Quintessential Cole Porter", "",  "coleportercd.htm", "");

	menu.addSubItem("freedownloadid", "Order CDs", "",  "ordercd.htm", "");



        menu.addSubItem("searchengineid", "Overview", "Pops Show Overview",  "popshows.htm", "");

;	menu.addSubItem("searchengineid", "Croonermania! (NEW)", "",  "croonermania.htm", "");


		menu.addSubItem("searchengineid", "Andrew Lloyd Webber", "",  "alwprogram.htm", "");

	menu.addSubItem("searchengineid", "The Best of Frank Sinatra", "",  "blueeyesprogram.htm", "");

	menu.addSubItem("searchengineid", "Christmas Memories", "", "christmasmemoriesprogram.htm", "");

	menu.addSubItem("searchengineid", "The Best of Cole Porter", "",  "toodarnhotprogram.htm", "");

	menu.addSubItem("searchengineid", "Love Changes Everything", "",  "lceprogram.htm", "");

	menu.addSubItem("searchengineid", "Show Reviews", "",  "reviews.htm", "")



	menu.addSubItem("miscid", "Biography", "",  "michael.htm", "");

	menu.addSubItem("miscid", "Show Reviews", "",  "reviews.htm", "");

	menu.addSubItem("miscid", "Photo Gallery", "",  "photogallery.htm", "");

	menu.addSubItem("miscid", "Quills and Quotes", "",  "http://www.quillsquotesandnotes.com/ws-hope.htm", "");

	menu.addSubItem("miscid", "Concert Slide Show", "",  "http://www.youtube.com/watch?v=HV4_2JOVKGg", "");
    menu.addSubItem("miscid", "Video - Andrew Lloyd Webber", "",  "youtubealw.htm", "");

	menu.addSubItem("miscid", "Video - Memory", "",  "youtubememory.htm", "");

	menu.addSubItem("miscid", "Video  - Bring Home Home", "",  "youtubebringhomhome.htm", "");

	menu.addSubItem("miscid", "Video  - Losing My Mind", "",  "youtubelosingmymind.htm", "");

	menu.addSubItem("miscid", "Video - Pie Jesu", "",  "youtubepiejesu.htm", "");


	menu.addSubItem("miscid", "Michael Hope Avenue Article", "",  "Avenue Michael Hope.pdf", "");

		menu.addSubItem("miscid", "Web Site Friends", "",  "links.htm", "");



	menu.addSubItem("concert", "2009 - 2010 Performances", "",  "performances.htm", "");

	menu.addSubItem("concert", "Past Performances", "",  "pastperformances.htm", "");



	menu.addSubItem("music", "Special Occasions", " ",  "specialoccasions.htm", "");





	menu.showMenu();

}