//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", "Site Linx",  "index1.htm", null);
  	menu.addItem("bandid", "The Band", "Learn about The Jeevas", null , null);
	menu.addItem("discid", "The Music", "Music Links",  null, null);
	menu.addItem("ontheroadid", "On The Road", "Free Downloads",  null, null);
	menu.addItem("contactid", "Make Contact", "Search Engines",  null, null);
	menu.addItem("linkid", "Links", "Miscellaneous",  null, null);

  	menu.addSubItem("bandid", "Crispian", "Learn about the dodgy one",  "crispian.html", "");
	menu.addSubItem("bandid", "Dan", "The randy one",  "dan.html", "");
	menu.addSubItem("bandid", "Andy", "The quiet one", "andy.html", "");
	menu.addSubItem("bandid", "", "", "", "");

	menu.addSubItem("discid", "Discography","All the bands releases to date!",  "discography.html","");
	menu.addSubItem("discid", "Lyrics","Lyrics of all the songs",  "lyrics.html", "");
	menu.addSubItem("discid", "Downloads!", "Live/Rare recordings from recent tours",  "downloadbaby.html","");
	menu.addSubItem("discid", "", "",  "","");

	menu.addSubItem("ontheroadid", "Live!", "Tour Dates", "Live.html", "");
	menu.addSubItem("ontheroadid", "Live Pictures!", "Pix from gigs!", "pictures.html", "");
	menu.addSubItem("ontheroadid", "Submit A Review", "Email a Review!",  "submit.html", "");
  	menu.addSubItem("ontheroadid", "", "",  "", "");
	

	menu.addSubItem("contactid", "Sign Guestbook", "Leave A Message!",  "http://www.theguestbook.com/egbook/465278.gbook", "");
	menu.addSubItem("contactid", "View Guestbook!","Read messages","http://www.theguestbook.com/vgbook/465278.gbook","");
	menu.addSubItem("contactid", "Contact Form", "Contact me!",  "form.html", "");
	menu.addSubItem("contactid", "", "",  "", "");
		

 	menu.addSubItem("linkid", "Jeevas OfficialSite", "Official Home Of The Jeevas!",  "http://www.thejeevas.com/", null);
	menu.addSubItem("linkid", "Brios' JeevasSite", "Download Jeevas Bootlegs here!",  "http://www.thejeevas.co.uk/", null);
	menu.addSubItem("linkid", "Jasmines Site", "Long Term Fansite", "http://www.excite.com", null);
	menu.addSubItem("linkid","AllMusicGuide","See detailed reviews/discogs for every band on Earth",  "http://www.allmusicguide.com", null);
  	menu.addSubItem("linkid", "HMV Online", "Buy Jeevas here!",  "http://hmv.co.uk/", null)
	menu.addSubItem("linkid", "", "",  "", "");


	menu.showMenu();
}