//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("alphonse", "Alphonse", "Alphonse Island", null, null);
	menu.addItem("desroches", "Desroches", "Desroches Island", null, null);
	menu.addItem("mahe", "Mahe", "Mahe", null, null);
	menu.addItem("seychelles", "Seychelles Info", "Seychelles Information", null, null);

	menu.addSubItem("alphonse", "Alphonse Island", "Alphonse Island", "alphonse.htm", "");
	menu.addSubItem("alphonse", "Alphonse Info", "Alphonse Info", "alphonse.htm#Beschreibung-d", "");
	menu.addSubItem("alphonse", "Alphonse Unterwasserwelt", "Alphonse Underwater world", "alphonse.htm#UW", "");

	menu.addSubItem("desroches", "Desroches Island", "Desroches Island", "desroches.htm", "");
	menu.addSubItem("desroches", "Desroches Info", "Desroches Info", "desroches.htm#Beschreibung-d", "");
	menu.addSubItem("desroches", "Desroches Unterwasserwelt", "Desroches Underwater world", "desroches.htm#UW", "");

	menu.addSubItem("mahe", "Mahe - die Insel", "Mahe - the Island", "mahe.htm", "");
	menu.addSubItem("mahe", "Mahe - Blumen", "Mahe - the Flowers", "mahe.htm#Blumen", "");
	menu.addSubItem("mahe", "Mahe - Informationen", "Mahe - Information", "mahe.htm#Info-d", "");
	menu.addSubItem("mahe", "Seiten-Statistik", "Page statistics", "mahe.htm#Statistik", "");

	menu.addSubItem("seychelles", "Seychellen Info + Foto", "Seychelles Info + Photo", "seychelles-de.htm", "");
	menu.addSubItem("seychelles", "Seychellen Klima", "Seychelles Clima", "seychelles-de.htm#Clima", "");
	menu.addSubItem("seychelles", "Seychellen Links", "Seychelles Links", "seychelles-de.htm#Links", "");

	menu.showMenu();
}
