	if (mtDropDown.isSupported()) {

		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("Introducción", "intro01.htm"); // send no URL if nothing should happen onclick
		menu1.addItem("Nuestro Compromiso", "compromiso.htm"); // send no URL if nothing should happen onclick
		menu1.addItem("Información para<br>transferencias", "infoTransferencia.htm");
		menu1.addItem("¿Cómo ubicarnos?", "ubicacion.htm");

		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Introducción", "intro02.htm");
		menu2.addItem("Cuentas", "cuentas.htm");
		menu2.addItem("Depósitos a plazo", "depositos.htm");
		menu2.addItem("Pago a terceros", "terceros.htm");
		menu2.addItem("Cobranzas", "cobranzas.htm");
		menu2.addItem("Banca Virtual", "Banca.htm");
		menu2.addItem("Solicitudes Administrativas", "solicitudes.htm");
		
		mtDropDown.renderAll();
	}
