//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("batchid", "The Tom Batchelor Band", "The Tom Batchelor Band",  null, null);

	menu.addItem("newsid", "News", "News",  null, null);

	menu.addItem("rafikiid", "Rasta Rafiki stuff", "Rasta Rafiki stuff",  null, null);

	menu.addItem("contactid", "Making Contact", "Making Contact",  null, null);

	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);



	menu.addSubItem("batchid", "Biography", "Biography",  "bio.htm", "");

	menu.addSubItem("batchid", "MP3's", "MP3's",  "dcsound.htm", "");

	menu.addSubItem("batchid", "DC Soundpalace", "DC Soundpalace",  "dcsound.htm", "");

	menu.addSubItem("batchid", "Links to our friends", "Links to our friends",  "links.htm", "");
	
	menu.addSubItem("batchid", "Slide Shows", "Slide Shows",  "slides.htm", "");

	menu.addSubItem("batchid", "Home", "Home",  "index.html", "");
	

	menu.addSubItem("newsid", "Latest News", "Latest News",  "latest.htm", "");

	menu.addSubItem("newsid", "Archived News", "Archived News",  "archive.htm", "");

	menu.addSubItem("newsid", "Home", "Home",  "index.html", "");
	

	menu.addSubItem("rafikiid", "Merchandise", "Merchandise",  "rafiki5.htm", "");

	menu.addSubItem("rafikiid", "Rasta Rafiki MP3", "Rasta Rafiki MP3",  "sounds.htm", "");

	menu.addSubItem("rafikiid", "Beat Magazine article", "Beat Magazine article",  "beat.htm", "");

	
	menu.addSubItem("contactid", "Email Us", "Email Us",  "email.htm", "");

	menu.addSubItem("contactid", "Sign Our Guestbook", "Sign Our Guestbook",  "guestbook.htm", "");

	menu.addSubItem("contactid", "Home", "Home",  "index.html", "");

	menu.addSubItem("miscid", "Photos", "Photos",  "photos.htm", "");

	menu.addSubItem("miscid", "RealAudio", "RealAudio",  "http://www.realaudio.com/", "");

	
	


	menu.showMenu();

}