	// 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
		//==================================================================================================

		//==================================================================================================
		// 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])
		//==================================================================================================
				
		var menu1 = ms.addMenu(document.getElementById("productos"));
		menu1.addItem("Sandias y Melones","sandias.php");
			var menu1s1 = menu1.addMenu(menu1.items[0]);
			menu1s1.addItem("PERLA ","sandias.php#perla");
			menu1s1.addItem("SUPER SANGRIA F1","sandias.php#super_sangria");
			menu1s1.addItem("CALL SWEET SUPREME","sandias.php#callsweet_supreme");
			menu1s1.addItem("TOP MARK HYB","sandias.php#topmarkhyb");
			menu1s1.addItem("Torreón F1","sandias.php#torreon");
			menu1s1.addItem("Cal Mark F1","sandias.php#calmark");
			menu1s1.addItem("Rayo F1","sandias.php#rayo");
				
		menu1.addItem("Tomates","tomates.php");
			var menu1s2 = menu1.addMenu(menu1.items[1]);
			menu1s2.addItem("ALMA F1","tomates.php#alma_f1");
			menu1s2.addItem("ETERNO F1","tomates.php#eterno");
			menu1s2.addItem("SAN ANTONIO","tomates.php#san_antonio");
			menu1s2.addItem("BIG RIO F1","tomates.php#bigrio_f1");
			menu1s2.addItem("JIRAFA ","tomates.php#jirafa");
			menu1s2.addItem("ROY","tomates.php#roy");
			menu1s2.addItem("TOMATE SULTAN F1","tomates.php#sultan_f1");
			
		menu1.addItem("Chiles","chiles.php");
			var menu1s3 = menu1.addMenu(menu1.items[2]);
			menu1s3.addItem("JALAMEX","chiles.php#jalamex");
			menu1s3.addItem("CHILE HABANERO","chiles.php#habanero");
			menu1s3.addItem("PICO DE ORIZABA F1","chiles.php#picodeorizaba");
			menu1s3.addItem("DON NACHO F1","chiles.php#don_nacho");
			menu1s3.addItem("JALAPEÑO HYB. 777","chiles.php#777");
			menu1s3.addItem("ANCHO PANCHO F1","chiles.php#anchopancho");
			menu1s3.addItem("PASILLA BAJIO","chiles.php#pasillabajio");

		menu1.addItem("Tomatillos y cilantro","tomatillos.php");
			var menu1s4 = menu1.addMenu(menu1.items[3]);
			menu1s4.addItem("CILANTRO PAKISTAN","tomatillos.php#pakistan");
			menu1s4.addItem("PREMIER","tomatillos.php#premier");
			menu1s4.addItem("TOM. CASCARA MORADA","tomatillos.php#cmorada");
			menu1s4.addItem("SAN MARTIN","tomatillos.php#sanmartin");
			
		menu1.addItem("Pepinos y calabazas","pepinos.php");
			var menu1s5 = menu1.addMenu(menu1.items[4]);
			menu1s5.addItem("GREEN SLAM F1","pepinos.php#green_slam");
			menu1s5.addItem("DOLARZINI","pepinos.php#dolarzini");
			menu1s5.addItem("GREEN PICK","pepinos.php#greenpick");
			menu1s5.addItem("PEPINO FERRARI","pepinos.php#ferrari");

		//==================================================================================================
		// 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();
	}
