//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("webmasterid", "ENGLISH", "ENGLISH",  null, null);
	menu.addItem("newsid", "DEUTSCH", "DEUTSCH",  null, null);
	menu.addItem("freedownloadid", "ITALIANO", "ITALIANO",  null, null);
	menu.addItem("searchengineid", "ESPA&Ntilde;OL", "ESPA&Ntilde;OL",  null, null);
	menu.addItem("miscid", "HA PYCCKOM", "HA PYCCKOM",  null, null);

	menu.addSubItem("webmasterid", "About the author of  'The Voice'-volumes", "About the author of  'The Voice'-volumes",  "english/author.html", "");
	menu.addSubItem("webmasterid", "Selections from 'The Voice'-volumes", "Selections from 'The Voice'-volumes",  "english/selections.html", "");
	 
	menu.addSubItem("newsid", "Über den Autor der Bände 'Die Stimme'", "Über den Autor der Bände 'Die Stimme'",  "deutsch/autor.html", "");
	menu.addSubItem("newsid", "Auslese von den Bänden 'Die Stimme'", "Auslese von den Bänden 'Die Stimme'",  "deutsch/auslese.html", "");
 
	menu.addSubItem("freedownloadid", "Sull'autore dei volumi de La Voce", "Sull'autore dei volumi de La Voce",  "italiano/autore.html", "");
	menu.addSubItem("freedownloadid", "Selezioni dei volumi de La Voce", "Selezioni dei volumi de La Voce",  "italiano/selezioni.html", "");

	menu.addSubItem("searchengineid", "Autor", "Autor",  "espanol/autor.html", "");
	menu.addSubItem("searchengineid", "Selecciones", "Selecciones",  "espanol/selecciones.html", "");
 
	menu.addSubItem("miscid", "Abtop", "Abtop",  "ha_pucckom/abtop.html", "");
	menu.addSubItem("miscid", "Extrackt", "Extrackt",  "ha_pucckom/extrackt.html", "");

	menu.showMenu();
}