
function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("infoid", "Informationen", "Informationen",  null, null);
	menu.addItem("SpFid", "Sport & Freizeit", "Sport & Freizeit",  null, null);

	menu.addSubItem("infoid", "Orte", "Orte",  "#orte", "");
	menu.addSubItem("infoid", "Touristische Infos", "Touristische Infos",  "#tourist", "");
	menu.addSubItem("infoid", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- Fremdenverkehrs&auml;mter", "Fremdenverkehrs&auml;mter",  "http://turismo.regione.veneto.it/apt/index.php", "_blank");
	menu.addSubItem("infoid", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- Touristische Website des Veneto", "Touristische Website des Veneto",  "http://www.veneto.to/portal/faces/public/guest?portal:componentId=portal&portal:action=changeLanguage&portal:language=de", "_blank");
	menu.addSubItem("infoid", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- Allgemeine Website des Veneto", "Allgemeine Website des Veneto",  "http://www.regione.veneto.it", "_blank");
	menu.addSubItem("infoid", "Villen in Veneto zum Wohnen", "Villen in Veneto zum Wohnen",  "http://www.hotelvillen.de/", "_blank");
	menu.addSubItem("infoid", "Villen in Veneto zum Anschauen", "Villen in Veneto zum Anschauen",  "http://www.villevenete.org/", "_blank");
	menu.addSubItem("infoid", "Wetter", "Wetter",  "http://www.wetter-italien.de", "_blank");

	menu.addSubItem("SpFid", "Radtouren", "Radtouren",  "http://www.teletour.de/italien/veneto/radtouren/index.html", "_blank");
	menu.addSubItem("SpFid", "Golf", "Golf",  "http://www.golf-veneto.de/", "_blank");
	menu.addSubItem("SpFid", "Arena di Verona", "Arena di Verona",  "http://www.arena-verona.de", "_blank");

	menu.showMenu();
}

