//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", "Isola di Alphonse", null, null);
	menu.addItem("desroches", "Desroches", "Isola di Desroches", null, null);
	menu.addItem("mahe", "Mahe", "Isola di Mahe", null, null);
	menu.addItem("seychelles", "Seychelles Info", "Seycelle Informazione", null, null);

	menu.addSubItem("alphonse", "Alphonse Island", "Isola di Alphonse", "alphonse.htm", "");
	menu.addSubItem("alphonse", "Alphonse Info", "Alphonse - Informazione", "alphonse.htm#Beschreibung-e", "");
	menu.addSubItem("alphonse", "Alphonse underwater", "Alphonse subacqueo", "alphonse.htm#UW", "");

	menu.addSubItem("desroches", "Desroches Island", "Isola di Desroches", "desroches.htm", "");
	menu.addSubItem("desroches", "Desroches Info", "Desroches  - Informazione", "desroches.htm#Beschreibung-e", "");
	menu.addSubItem("desroches", "Desroches underwater", "Desroches subacqueo", "desroches.htm#UW", "");

	menu.addSubItem("mahe", "Mahe - the Island", "Mahe - l'isola", "mahe.htm", "");
	menu.addSubItem("mahe", "Mahe - Flowers", "Mahe - Fiori", "mahe.htm#Blumen", "");
	menu.addSubItem("mahe", "Mahe - Information", "Mahe informazione", "mahe.htm#Info-e", "");
	menu.addSubItem("mahe", "Page statistic", "Statistica di pagina", "mahe.htm#Statistik", "");

	menu.addSubItem("seychelles", "Seychelles Info", "Seycelle Informazione", "seychelles-en.htm", "");
	menu.addSubItem("seychelles", "Seychelles Clima", "Seycelle Clima", "seychelles-en.htm#Clima", "");
	menu.addSubItem("seychelles", "Seychelles Links", "Seycelle Links", "seychelles-en.htm#Links", "");

	menu.showMenu();
}