//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("home", "Home    ", "Shady Home",  "http://www.shadygrey.com/", null);
	menu.addItem("booking", "Booking    ", "Shady Booking",  "http://www.shadygrey.com/booking/use/shadybook/book2.html", null);
	menu.addItem("calendar", "Events Calendar", "Shady Days",  "http://www.shadygrey.com/calendar.htm", null);
	menu.addItem("promo", "Promo Stuff", "Shady Media",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);
	menu.addItem("photos", "Photo Gallery", "Current Shady Pic's",  null, null);
	menu.addItem("thelegacy", "The Shady Legacy", "Shady Legacy",  null, null);

	menu.addSubItem("promo", "Demo Tunes", "Shady Tunes",  "http://www.shadygrey.com/studiodemo.htm", "");
	menu.addSubItem("promo", "Song List", "Songs From Yesterday and Today",  "http://www.shadygrey.com/songlist.htm", "");
	menu.addSubItem("promo", "Guest Book", "Shady Fans",  "http://www.theguestbook.com/sign.php/613186", "");

	menu.addSubItem("miscid", "Bio's", "Shady Characters",  "http://www.shadygrey.com/bios.htm", "");
	menu.addSubItem("miscid", "News Letter", "Shady News",  "http://www.shadygrey.com/newsletter.htm", "");

	menu.addSubItem("photos", "SD Fair 2007", "Shady News",  "http://www.shadygrey.com/slideshows/countyfair.htm", "");

	menu.addSubItem("thelegacy", "Legacy Home", "Legacy",  "http://www.shadygrey.com/the_legacy.htm", "");
	menu.addSubItem("thelegacy", "Kira Brown", "Lead Vocals",  "http://www.shadygrey.com/thelegacy/kira.htm", "");
	menu.addSubItem("thelegacy", "Mike Barniskis", "Guitarist",  "http://www.shadygrey.com/thelegacy/mike.htm", "");
	menu.addSubItem("thelegacy", "Lester Montano", "Guitarist",  "http://www.shadygrey.com/thelegacy/lester.htm", "");
		menu.addSubItem("thelegacy", "Sean Michaels", "Lead Guitar",  "http://www.shadygrey.com/thelegacy/sean.htm", "");

	menu.showMenu();
}

