//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("language1", "English", "English",  null, null);
	menu.addItem("language2", "Deutsch", "Deutsch",  null, null);
	menu.addItem("contact", "Contact", "Contact",  null, null);
	

	menu.addSubItem("language1", "Biography", "Biography",  "piersonbiography.htm", "");
	menu.addSubItem("language1", "Repertoire", "Reperetoire",  "piersonrepertoire.htm", "");
	menu.addSubItem("language1", "Reviews", "Reviews",  "piersonreviews.htm", "");
	menu.addSubItem("language1", "Photo Gallery", "Photo Gallery",  "piersonphotos.htm", "");
	menu.addSubItem("language1", "Sound Clips", "Sound Clips",  "piersonaudio.htm", "");
	menu.addSubItem("language1", "Home", "Home",  "index.html", "");

	menu.addSubItem("language2", "Biografie", "Biografie",  "piersonbiografie.htm", "");
	menu.addSubItem("language2", "Repertoire", "Repertoire",  "piersonrepertoire.htm", "");
	menu.addSubItem("language2", "Rezensionen", "Rezensionen",  "piersonrezensionen.htm", "");
	menu.addSubItem("language2", "Fotogalerie", "Fotogalerie",  "piersonphotos.htm", "");
	menu.addSubItem("language2", "Aufnahmen", "Aufnahmen",  "piersonaudio.htm", "");
	menu.addSubItem("language2", "Home", "Home",  "index.html", "");
	
	menu.addSubItem("contact", "Email", "Email",  "mailto:Pierson.Susan@earthlink.net", "");
	
	
	menu.showMenu();
}