//-----------------------------------------------------------------------------

// TransMenu Definition

//-----------------------------------------------------------------------------

	

if (TransMenu.isSupported()) {

	var ms = new TransMenuSet(TransMenu.direction.down, 11, 0, TransMenu.reference.bottomLeft);

	

	var menu1 = ms.addMenu(document.getElementById("hotels_martinique"));

	menu1.addItem("Hotel <b>Karibea Beach Resort Gosier</b> in Guadeloupe","hotel_gosier.php");

	menu1.addItem("Hotel <b>Karibea Resort Sainte Luce</b> in Martinique","hotel_sainteluce.php");

	menu1.addItem("Hotel <b>Baie du Galion Resort</b> in Martinique","hotel_galion.php");

	menu1.addItem("Hotel <b>Camelia Residence</b> in Martinique","hotel_camelia.php");

	menu1.addItem("Hotel <b>Corail Residence</b> in Martinique","hotel_corail.php");

	//menu1.addItem("Hotel <b>Domaine de Sainte Marie</b> in Martinique","hotel_saintemarie.php");

	//menu1.addItem("Hotel <b>La Plantation Leyritz</b> in Martinique","hotel_plantationleyritz.php");

	menu1.addItem("Hotel <b>La Valmeniere Hotel</b> in Martinique","hotel_valmeniere.php");

	menu1.addItem("Hotel <b>Squash Hotel</b> in Martinique","hotel_squash.php");

	

	var menu2 = ms.addMenu(document.getElementById("hotels_guadeloupe"));

	menu2.addItem("Guadalupa","guadalupa_siti_turistici.php");

	menu2.addItem("Martinica","martinica_siti_turistici.php");

		

	var menu3 = ms.addMenu(document.getElementById("hotels_antilles"));

	menu3.addItem("Hotel e Resort","hotel_resort.php");

	menu3.addItem("Residence con Servizi","residenza_alberghiera.php");

	//menu3.addItem("Residence in Affitto","residenza_locativa.php");

	menu3.addItem("All Inclusive","all_inclusive.php");

	menu3.addItem("Business Hotel","hotel_business.php");

}

TransMenu.renderAll();