	// 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 menu1 = ms.addMenu(document.getElementById("menu1"));
		//menu1.addItem("-= Site Info =-", "");
		//menu1.addItem("", "");
		//menu1.addItem("Home Page", "index.htm");
		//==================================================================================================

		//==================================================================================================
		// 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[1]);
		//subMenu1.addItem("Prova", "index.htm");
		//subMenu1.addItem("Prova2", "index.htm");
		//subMenu1.addItem("Sponsors", "index.htm");
		//subMenu1.addItem("Contact", "index.htm");
		
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Chi siamo","chi_siamo.asp");
		menu2.addItem("Storia", "storia.asp");
		//menu2.addItem("Documenti", "");
		//menu2.addItem("Referenze", "");

		
		//var subMenu2 = menu2.addMenu(menu2.items[2]);
		//subMenu2.addItem("Autorizzazioni", "");    
		//subMenu2.addItem("Immagini dal passato", "" );
		//subMenu2.addItem("Intranet", "");
  
    
		// var subMenu3 = menu2.addMenu(menu2.items[0]);
		// subMenu3.addItem("testo", "http://");
    
    
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("realizzazione siti", "internet.asp");
		//menu3.addItem("restyling", "");
		menu3.addItem("Hosting", "internet.asp");
		//menu3.addItem("monitoring IP", "");
		//menu3.addItem("web design", "");
		//menu3.addItem("web marketing", "");
		//menu3.addItem("hosting & housing", "");
		menu3.addItem("registrazione domini", "internet.asp");
		//menu3.addItem("formazione", "");
		//menu3.addItem("intranet", "");
		//menu3.addItem("SMS", "");
		//menu3.addItem("glossario", "");
		
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("Sistemi telefonici","telefonia.asp");
		//menu4.addItem("Telefoni", "");
		menu4.addItem("Assistenza", "telefonia.asp");
		//menu4.addItem("Presidi tecnici", "");
		//menu4.addItem("Consulenza", "");
		//menu4.addItem("Formazione", "");
		//menu4.addItem("Documenti", "");
		
		
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("Reti cablate","networking.asp");
		//menu5.addItem("Prodotti", "");
		menu5.addItem("Certifica", "networking.asp");
		//menu5.addItem("Consulenza", "");
		menu5.addItem("Progettazione", "networking.asp");
		//menu5.addItem("Corsi", "");
		//menu5.addItem("Tools", "");
		//menu5.addItem("IP Monitoring", "");
		
		
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("Assistenza sistemistica","informatica.asp");
		//menu6.addItem("Prodotti","");
		menu6.addItem("Manutenzione reti","informatica.asp");
		//menu6.addItem("Download","");
		//menu6.addItem("Corsi","");
		//menu6.addItem("Link","");
		
		
		//var subMenu4 = menu6.addMenu(menu6.items[1]);
	//subMenu4.addItem("Updates", "");    
    //subMenu4.addItem("Personal Computer", "");    
    //subMenu4.addItem("Monitor", "");
    //subMenu4.addItem("Stampanti", "");
    //subMenu4.addItem("Accessori", "http://192.168.0.210/tre1/tre.htm");

    
    //var subMenu5 = menu6.addMenu(menu6.items[2]);
    //subMenu5.addItem("Presidi tecnici", "");    
    //subMenu5.addItem("Contratti manutenzione", "");

        
    var menu7 = ms.addMenu(document.getElementById("menu7"));
    
		menu7.addItem("Dove siamo", "contatti.asp");
		menu7.addItem("Scrivici", "mailto:info@tre-tlc.it");
		//menu7.addItem("Help Desk", "");
		//menu7.addItem("Amministrazione", "");
		//menu7.addItem("Lavora con noi", "");
		//menu7.addItem("Commerciale", "");

		
		
//		var menu8 = ms.addMenu(document.getElementById("menu8"));
//    menu8.addItem("Updates","http://www.highend3d.com/3dsmax/");
//		menu8.addItem("Forums", "/boards/postlist.php?Cat=&Board=3dsmax");
//		menu8.addItem("Plugins", "/3dsmax/plugins/");
//		menu8.addItem("Scripts", "/3dsmax/scripts/");
//		menu8.addItem("Shaders", "/3dsmax/shaders/");
//		menu8.addItem("Tips/Tutorials", "/3dsmax/tutorials/");
//		menu8.addItem("Tools", "/3dsmax/tools/");
//		menu8.addItem("Users Links", "/3dsmax/users/");
//                menu8.addItem("", "");
//                menu8.addItem("Discreet", "http://www.discreet.com/products/3dsmax/");


		//==================================================================================================
		// 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();
	}

