if (mtDropDown.isSupported()) {

var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);
var menu1 = ms.addMenu(document.getElementById("menu1"));
var menu2 = ms.addMenu(document.getElementById("menu2"));
var menu3 = ms.addMenu(document.getElementById("menu3"));
var menu4 = ms.addMenu(document.getElementById("menu4"));


// MENU1
menu1.addItem("The Agriturismo","centro.html");
menu1.addItem("How to find us","dove.html");
menu1.addItem("Info","info.html");



// MENU2

menu2.addItem("Podere Cappella","cappella.html");
menu2.addItem("Apartament","javascript:void(0);");
menu2.addItem("Activities","attivita.html");

// SOTTOMENU 2.1 - secondo sottemenų del menų2
var submenu21=menu2.addMenu(menu2.items[1]);
submenu21.addItem("Cappella 1","cap_1.html");
submenu21.addItem("Cappella 2","cap_2.html");
submenu21.addItem("Cappella 3","cap_3.html");
submenu21.addItem("Cappella 4","cap_4.html");



// MENU3
menu3.addItem("Podere Proneta","proneta.html");
menu3.addItem("Apartament","javascript:void(0);");
menu3.addItem("Activities","attivita.html");

// SOTTOMENU 3.1 - secondo sottemenų del menų2
var submenu31=menu3.addMenu(menu3.items[1]);
submenu31.addItem("Proneta 1","pro_1.html");
submenu31.addItem("Proneta 2","pro_2.html");
submenu31.addItem("Proneta 3","pro_3.html");
submenu31.addItem("Proneta 4","pro_4.html");

// MENU4
menu4.addItem("Wine","vini.html");
//menu4.addItem("Winery","cantina.html");
menu4.addItem("Products","prodo.html");

mtDropDown.renderAll();

}