	// 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
		//==================================================================================================
		//primul meniu
		//var menu1 = ms.addMenu(document.getElementById("menu1"));
		//menu1.addItem(" Cera", "............"); // send no URL if nothing should happen onclick
		//==================================================================================================

		//==================================================================================================
		// 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 subMenu1 = menu1.addMenu(menu1.items[0]);
		//subMenu1.addItem("·  Cere da Modellazione", "............");
		//subMenu1.addItem("·  Cere da Iniezione", "............");
		//subMenu1.addItem("·  Modelli in Cera", "............");
		//subMenu1.addItem("·  Strumenti", "............");
		

		// menu : Get Started
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem(" Latest news ", "news1.asp");
		menu2.addItem(" Coming soon ", "news2.asp");
		
      
	
		// menu
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem(" Contact ", "company-contact.asp");
		menu3.addItem(" Selling Conditions ", "company-condizioni.asp");
		menu3.addItem(" Tameo Kits ", "company-tameokits.asp");
		menu3.addItem(" FAQ ", "company-faq.asp");
		
		// add a sub-menu
//	var subMenu3 = menu3.addMenu(menu3.items[0]);
	//	subMenu3.addItem("·  Cere da Modellazione", "............");
		//subMenu3.addItem("·  Cere da Iniezione", "............");
		//subMenu3.addItem("·  Modelli in Cera", "............");
		//subMenu3.addItem("·  Strumenti", "............");
		

           // menu
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem(" Products ", "prodotti-nostroprodotto.asp");
		menu4.addItem(" Models ", "prodotti-modelli.asp");		
		menu4.addItem(" Accessories ", "prodotti-accessori.asp");
		menu4.addItem(" Works in progress ", "news3.asp");
		menu4.addItem(" Future models ", "prodotti-modellifuturi.asp");
		menu4.addItem(" Focus ", "Focus_default.asp");
		menu4.addItem(" Suggestions ", "UnderConstruction.asp");
		
		// menu
		//var menu5 = ms.addMenu(document.getElementById("menu5"));
		//menu5.addItem("- Metalli", "............");
		//menu5.addItem("- Fonditrici", "............");		
		//menu5.addItem("- Video&Libri", "............");		
		//menu5.addItem("- Sicurezza", "............");
		//menu5.addItem("- Altri Prodotti", "............");		
		
        // add a sub-menu		
    //    var subMenu51 = menu5.addMenu(menu5.items[0]);
		//subMenu51.addItem("·  Leghe Magic per Argento", "............");
		//subMenu51.addItem("·  Leghe Magic per Oro", "............");
		//subMenu51.addItem("·  Leghe Magic per Platino", "............");
		//subMenu51.addItem("·  Altre Leghe", "............");		
		
		
        // add a sub-menu		
    //    var subMenu52 = menu5.addMenu(menu5.items[3]);
		//subMenu52.addItem("·  Indumenti di Protezione", "............");
		//subMenu52.addItem("·  Antinfortunistica", "............");
		//subMenu52.addItem("·  Aspirazione Polveri", "............");
		
			// menu
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem(" Focus ", "Focus_default.asp");
		//menu6.addItem("- Spiantonatori", "............");		
		
           // menu : banco da lavoro
		var menu7 = ms.addMenu(document.getElementById("menu7"));
		menu7.addItem(" Catalogue ", "download-Catalogo.asp");
		menu7.addItem(" Tameo News", "download-tameonews.asp");
		//menu7.addItem("-  Lampade", "............");		
    //    menu7.addItem("-  Macchine per Incisione", "............");
		//menu7.addItem("-  Macchine per Incassatura", "............");		
		//menu7.addItem("-  Frese e Punte", "............");
		//menu7.addItem("-  Bulini", "............");
		//menu7.addItem("-  Trapani", "............");
		//menu7.addItem("-  Micromotori", "............");
		//menu7.addItem("-  Strumenti", "............");		
		//menu7.addItem("-  Video&Libri", "............");
		//menu7.addItem("-  Altri Prodotti", "............");
		
           // add a sub-menu		
    //    var subMenu71 = menu7.addMenu(menu7.items[5]);
		//subMenu71.addItem("·  Frese", "............");
		//subMenu71.addItem("·  Frese Diamantate", "............");
		//subMenu71.addItem("·  Punte", "............");		
		
			
		// add a sub-menu		
  //      var subMenu72 = menu7.addMenu(menu7.items[9]);
		//subMenu72.addItem("·  Utensileria", "............");
		//subMenu72.addItem("·  Calibri e Micrometri", "............");
		//subMenu72.addItem("·  Bilance", "............");		
     //   subMenu72.addItem("·  Bilance per Carati", "............");
		//subMenu72.addItem("·  Gemmologia", "............");		
		
		//var menu8 = ms.addMenu(document.getElementById("menu8"));
		
		//var menu9 = ms.addMenu(document.getElementById("menu9"));
		
		//var menu10 = ms.addMenu(document.getElementById("menu10"));
		
		
		//==================================================================================================
		// 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();
	}

