	// 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 (ypSlideOut.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 ypSlideOutSet(ypSlideOut.direction.down, 0, 3, ypSlideOut.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("Sitios Web >", "http://www.ingenioweb.net/diseno_web_ecuador.html");
		menu1.addItem("Hosting  >", "http://www.ingenioweb.net/hosting.html");
		menu1.addItem("Dominios", "http://www.ingenioweb.net/dominios.html");
		menu1.addItem("Multimedia / Animación", "http://www.ingenioweb.net/multimedia_ecuador.html");
		menu1.addItem("Sistemas Web", "http://www.ingenioweb.net/sistemas_online.html");
  	 	 	 	
    	var submenu0 = menu1.addMenu(menu1.items[0]);
    	submenu0.addItem(" > Diseño y Re-diseño", "http://www.ingenioweb.net/diseno_web_ecuador.html");
    	submenu0.addItem(" > Sitios Web 100% Animado", "http://www.ingenioweb.net/flash_web.html");
    	submenu0.addItem(" > Maneje su Sitio Web", "http://www.ingenioweb.net/autoadministracion.html");
    	submenu0.addItem(" > Actualizaciones", "http://www.ingenioweb.net/actualizacion_sitios_web.html");
    	submenu0.addItem(" > PAQUETES WEB - TotalWebSite", "http://www.ingenioweb.net/totalwebsite.html");

    	var submenu0 = menu1.addMenu(menu1.items[1]);
    	submenu0.addItem(" > Hosting (Pequeñas y Medianas empresas)", "http://www.ingenioweb.net/hosting.html");
    	submenu0.addItem(" > VPS (Grandes empresas)", "http://www.ingenioweb.net/vps_ecuador.html");
	
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Descripción y Objetivos", "http://www.ingenioweb.net/distribuidores.html");
		menu2.addItem("Beneficios", "http://www.ingenioweb.net/beneficios.html");
		menu2.addItem("Comisiones", "http://www.ingenioweb.net/comisiones_web.html");
		menu2.addItem("Niveles", "http://www.ingenioweb.net/niveles.html");
		menu2.addItem("Regístrate Ya!", "http://www.ingenioweb.net/registro.html");
		menu2.addItem("F.A.Q.", "http://www.ingenioweb.net/faq.html");
	 	 	  	 	  	 	
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("Contáctenos", "http://www.ingenioweb.net/contacto.html");
		menu3.addItem("Cotice en Línea", "http://www.ingenioweb.net/cotizacion_enlinea.html");
		
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("Proyectos en Construcción", "http://www.ingenioweb.net/proyectos.html");
		menu4.addItem("Últimos Proyectos", "http://www.ingenioweb.net/ultimosproyectos.html");
		menu4.addItem("Portafolio de Clientes", "http://www.ingenioweb.net/portafolio.html");
		menu4.addItem("Testimonios Reales", "http://www.ingenioweb.net/testimonios.html");

		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("Sobre Nosotros", "http://www.ingenioweb.net/ingenioweb.html");
		menu5.addItem("Alianzas Estratégicas", "http://www.ingenioweb.net/alianzas.html");
		
		//==================================================================================================

		//==================================================================================================
		// add a sub-menu
		//==================================================================================================
		// to add a sub menu to an existing menu object, call it's addMenu method and pass it the item from
		// the parent menu which should act as it's actuator. To add a submenu to the fourth item of a menu
		// called "theMenu", you would do theMenu.addMenu(theMenu.items[3])
		//==================================================================================================
		// menu : Get Started
		
		//==================================================================================================
		// 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.
		//==================================================================================================
		ypSlideOut.renderAll();
	}
