//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("thebandid", "&nbsp; &nbsp;The Band", "Bios of the band. Some serious, some funny.",  null, null);
	menu.addItem("imagesid", "&nbsp; &nbsp;Gallery", "Performance photos",  "gallery.html", null);
	menu.addItem("musicid", "&nbsp; &nbsp; &nbsp;Music Samples", "Music samples",  null, null);
	menu.addItem("scheduleid", "&nbsp; &nbsp;Schedule", "", "calendar.html");
	menu.addItem("promoid", "&nbsp; &nbsp; &nbsp;Promo Pak", "Promotional Info",  null, null);
	menu.addItem("contactid", "&nbsp; &nbsp;Contact", "Contact Info",  null, null);
	menu.addItem("dailyid", "&nbsp; &nbsp;Distractions", "Little distractions to make your day.",  null, null);
	menu.addItem("homeid", "&nbsp; &nbsp; TwannaTurner.com", "Home",   "index.html");


	menu.addSubItem("thebandid", "Twanna Turner", "Vocalist",  "twanna.html", "");
        menu.addSubItem("thebandid", "Jerry Martini", "Rock and Roll Hall of Famer Tenor Sax Player",  "jerry.html", "");
	menu.addSubItem("thebandid", "Brian Sweet", "Bass Guitar/Vocals",  "brian.html", "");
	menu.addSubItem("thebandid", "Steve Van Dewark", "Drums/Vocals",  "steve.html", "");                 
        menu.addSubItem("thebandid", "Cedric Curtis", "Guitar",  "cedric.html", ""); 
        
                  


	menu.addSubItem("dailyid", "&nbsp; &nbsp; &nbsp; &nbsp;  &nbsp; &nbsp;   Links", "Daily Distraction #1",  "links.html", "");
	menu.addSubItem("dailyid", "&nbsp; &nbsp;  &nbsp; &nbsp;  &nbsp; &nbsp;  Games", "Daily Distraction #2",  "games.html", "");
	
	

	menu.addSubItem("musicid", "Lady Marmalade", "Lady Marmalade",  "musicscene1.html", "");
	menu.addSubItem("musicid", "Tell Me Something Good", "Tell Me Something Good",  "musicscene2.html", "");
	menu.addSubItem("musicid", "You Got the Love", "You Got the Love",  "musicscene3.html", "");
	menu.addSubItem("musicid", "Can't Get Next to You", "Can't Get Next to You",  "musicscene4.html", "");
	menu.addSubItem("musicid", "Blutopia", "3 snippets of Blutopia",  "bluflash.html", "");

	
	
	menu.addSubItem("promoid", "Promo Picture", "Downloadable promotional picture",  "music.html", "");
	menu.addSubItem("promoid", "Contract - PDF", "Performance Contract",  "performance.pdf", "_blank");
	menu.addSubItem("promoid", "Contract - HTML", "Performance Contract",  "performance.html", "_blank");
	menu.addSubItem("promoid", "Song List", "Sortable Songlist",  "songlist.html", "");
	menu.addSubItem("promoid", "Press", "Newspaper articles",  "presskit.html", "");
	menu.addSubItem("promoid", "Clients/Comments", "Testimonials",  "comments.html", "");
	
	
	menu.addSubItem("contactid", "&nbsp; &nbsp;  Mailing List", "Sign Our Mailing List",  "mailinglist.html", "");
	menu.addSubItem("contactid", "&nbsp; &nbsp;  Email &nbsp;  Me", "Contact by Email",  "mailto:twannaturner@onebox.com", "");
	menu.addSubItem("contactid", "&nbsp; &nbsp; Phone &nbsp;  Me", "Contact by Phone",  "music.html", "");

	

	
	menu.showMenu();
}