	// set up drop downs anywhere in the body of the page. I think the bottom of the page is better.. 
	// but you can experiment with effect on loadtime.
	if (mtDropDown.isSupported()) {

		//==================================================================================================
		// create a set of dropdowns
		//==================================================================================================
		// the first param should always be down, as it is here
		//
		// The second and third param are the top and left offset positions of the menus from their actuators
		// respectively. To make a menu appear a little to the left and bottom of an actuator, you could use
		// something like -5, 5
		//
		// The last parameter can be .topLeft, .bottomLeft, .topRight, or .bottomRight to inidicate the corner
		// of the actuator from which to measure the offset positions above. Here we are saying we want the 
		// menu to appear directly below the bottom left corner of the actuator
		//==================================================================================================
		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		var menus1 = ms.addMenu(document.getElementById("menus1"));
		menus1.addItem("-Lazo Blanco-Idea y primeros pasos","/cgi-bin/yabb/YaBB.cgi?board=general;action=display;num=1057775200");
		menus1.addItem("-Presupuestos y relación de Ingresos", "/cgi-bin/yabb/YaBB.cgi?board=general;action=display;num=1063917749");
		menus1.addItem("-Información financiera ", "/cgi-bin/yabb/YaBB.cgi?board=general;action=display;num=1068111638;start=0#0");
		menus1.addItem("-Fotos de la Entrega del Lazo ", "/cgi-bin/yabb/YaBB.cgi?board=general;action=display;num=1070794610");
    menus1.addItem("*Operación KILO", "/cgi-bin/yabb/YaBB.cgi?board=general;action=display;num=1098352822;start=");
		menus1.addItem("*Operación KILO - Final y Fotos ", "/cgi-bin/yabb/YaBB.cgi?board=general;action=display;num=1102595426;start=0#0");
		menus1.addItem("**Operación Agua del Rocío para Perú ", "/cgi-bin/yabb/YaBB.cgi?board=general;action=display;num=1127126005");
		menus1.addItem("**CUENTAS Agua del Rocío para Perú ", "/cgi-bin/yabb/YaBB.cgi?board=general;action=display;num=1134478956");
		menus1.addItem("**FOTOS Agua del Rocío para Perú ", "/index.php?contenido=386");
    menus1.addItem("***Taller de Costura en CAMERÚN ", "/index.php?contenido=593");
    menus1.addItem("****Guardería en Bolivia", "/index.php?contenido=830");
    menus1.addItem("****Guardería en Bolivia - Cuentas", "/cgi-bin/yabb/YaBB.cgi?board=general;action=display;num=1197892350");
    menus1.addItem("***** Hospital en Mozambique ", "/cgi-bin/yabb/YaBB.cgi?board=general;action=display;num=1218105756");
    menus1.addItem("***** Hospital en Mozambique - Cuentas", "/cgi-bin/yabb/YaBB.cgi?board=general;action=display;num=1221857809");
		menus1.addItem("***** Centro en Buriti ", "/cgi-bin/yabb/YaBB.cgi?board=ofrenda;action=display;num=1258640139");
    menus1.addItem("***** Centro en Buriti - Cuentas", "/cgi-bin/yabb/YaBB.cgi?board=ofrenda;action=display;num=1260882337");
		
		var menus2 = ms.addMenu(document.getElementById("menus2"));
		menus2.addItem("Pregón rociero de La Palma del C. por Nuria (María)", "http://www.rocio.com/contenido/pdf/Pregon_Nuria.pdf");
		menus2.addItem("Pregón rociero de Écija. por Santos", "http://www.rocio.com/contenido/pdf/Pregon-Ecija.pdf");
		menus2.addItem("Pregón rociero de Ronda. por M. Carmen (Pirigrina)", "http://www.rocio.com/contenido/pdf/pregon2005.doc");
		menus2.addItem("Pregón rociero de Alicante por M. Romero (Goro Medina)", "http://www.hermandadrociosevilla.com/VARIOS/Pregon%20290406.htm");
		menus2.addItem("Pregón rociero de Gines. por Fco. J. Pavón", "http://www.rocio.com/contenido/pdf/Pregon-Gines-2002.pdf");
		menus2.addItem("Pregón rociero de Las Palmas por Fco. J. Pavón", "http://www.rocio.com/contenido/pdf/Pregon-Las-Palmas-2005.pdf");
		menus2.addItem("Pregón de Camino de La Línea por Agustín Fº Ruiz Pastor (Jartivle)", "http://www.rocio.com/contenido/pdf/Pregondecaminode AgustinF.RuizPastor.pdf");
		menus2.addItem("Destacados rocio.com" , "");
		
		var subMenu1 = menus2.addMenu(menus2.items[7]);
		subMenu1.addItem("Foro anterior 31/10/2000 al 17/03/2002", "http://www.rocio.com/contenido/foro_antiguo/foroentrada.html");
		subMenu1.addItem("Calendario de Peregrinaciones de Hermandades", "/index.php?contenido=38");
		
		
		//var menus3 = ms.addMenu(document.getElementById("menus3"));
		//menus3.addItem("Convivencia-Inmaculada-Precios y Sitio","/cgi-bin/yabb/YaBB.cgi?board=general;action=display;num=1066991244");
		//menus3.addItem("Convivencia-Inmaculada-Listas Asistentes", "/cgi-bin/yabb/YaBB.cgi?board=general;action=display;num=1066035628");
		//menus3.addItem("Convivencia-Inmaculada-Reservas definitivas", "/cgi-bin/yabb/YaBB.cgi?board=general;action=display;num=1067935640");
		//menus3.addItem("Convivencia-Inmaculada-Segundo Pago", "/cgi-bin/yabb/YaBB.cgi?board=general;action=display;num=1068717978");

		
		
		//==================================================================================================
		// write drop downs into page
		//==================================================================================================
		// this method writes all the HTML for the menus into the page with document.write(). It must be
		// called within the body of the HTML page.
		//==================================================================================================
		mtDropDown.renderAll();
	}

