	if (mtDropDown.isSupported()) {

		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("Introduction", "intro01.htm"); // send no URL if nothing should happen onclick
		menu1.addItem("Our commitment", "compromiso.htm"); // send no URL if nothing should happen onclick
		menu1.addItem("Wire Transfer<br>Information", "infoTransferencia.htm");
		menu1.addItem("Location", "ubicacion.htm");

		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Introduction", "intro02.htm");
		menu2.addItem("Type of Accounts", "cuentas.htm");
		menu2.addItem("Time Deposits", "depositos.htm");
		menu2.addItem("Funds Transfer", "terceros.htm");
		menu2.addItem("Collections", "cobranzas.htm");
		menu2.addItem("Internet Banking", "Banca.htm");
		menu2.addItem("Administrative Applications", "solicitudes.htm");
		mtDropDown.renderAll();
	}

