// aqui es donde se le asingnan las funciones al menu se extienden o se le ponen mas opciones con y los enlaces

	if (mtDropDown.isSupported()) {

		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

		// company menu 
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("&nbsp;Descripción institucional", "nosotros.php"); // send no URL if nothing should happen onclick
 		menu1.addItem("&nbsp;Iconos", "nosotros.php");
 		menu1.addItem("&nbsp;Contacto", "contacto.php");				
		
		//solutions menu 
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("&nbsp;Diseño de Soluciones", "web.php");
		menu2.addItem("&nbsp;Consultorias en IT", "consultoria.php");
		menu2.addItem("&nbsp;Programacion Avanzada ", "programacion.php");
		menu2.addItem("&nbsp;Redes, Cableados, Configuraciones ", "#");
		menu2.addItem("&nbsp;Marketing ", "#");
		menu2.addItem("&nbsp;Mantenimiento ", "#");
		menu2.addItem("&nbsp;Web Hosting ", "#");

		//Showroom menu 
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("&nbsp;En el Laboratorio", "#");		
		menu3.addItem("&nbsp;Trabajos realizados ", "#");
		menu3.addItem("&nbsp;Casos de Estudio ", "casosestudio.php");

		//Contacto y enlaces menu
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("&nbsp;Contacto", "contacto.php");
		menu4.addItem("&nbsp;Enlaces a sitios relacionados", "#");
		menu4.addItem("&nbsp;Enlaces a Sitios de Interes", "#");
		
		//Resources menu
//		var menu5 = ms.addMenu(document.getElementById("menu5"));
//		menu5.addItem("&nbsp;Overview", "/html/resources/index.html");
//		menu5.addItem("&nbsp;Free Utilities", "/html/resources/downloads/index.html");
//		menu5.addItem("&nbsp;Newsletters", "/html/resources/newsletters/index.html");
//		menu5.addItem("&nbsp;White Papers", "/html/resources/whitepapers/index.html");
//		menu5.addItem("&nbsp;Case Studies", "/html/resources/cases/index.html");
//		menu5.addItem("&nbsp;Data Sheets", "/html/resources/collateral/index.html");				
//		menu5.addItem("&nbsp;Product Tours", "/html/resources/tours/index.html");
//		menu5.addItem("&nbsp;Product Reviews", "/html/resources/reviews/index.html");
//		menu5.addItem("&nbsp;Awards", "/html/resources/awards/index.html");	
	
		//Support menu 
//		var menu6 = ms.addMenu(document.getElementById("menu6"));
//		menu6.addItem("&nbsp;Overview ", "/html/support/index.html");
//		menu6.addItem("&nbsp;Knowledgebase", "/html/support/kb/index.html");
//		menu6.addItem("&nbsp;Support Request", "/html/support/request/index.html");
//		menu6.addItem("&nbsp;Product Services", "/html/support/services/index.html");
		
		//Partners menu
//		var menu7 = ms.addMenu(document.getElementById("menu7"));
//		menu7.addItem("&nbsp;Overview", "/html/partners/index.html");
//		menu7.addItem("&nbsp;Channel Partner", "/html/partners/about/index.html");
//		menu7.addItem("&nbsp;MSP Partner", "/html/partners/msp/index.html");
//		menu7.addItem("&nbsp;Technology Partner", "/html/partners/technology/index.html");
//		menu7.addItem("&nbsp;Become a Partner", "/html/partners/become/index.html");
//		menu7.addItem("&nbsp;Locate a Partner", "/html/partners/locate/index.html");
//		menu7.addItem("&nbsp;Authorized Partners ", "/html/partners/authorized/index.html");
//		menu7.addItem("&nbsp;Enterprise Partners", "/html/partners/enterprise/index.html");
//		menu7.addItem("&nbsp;Consulting Partners ", "/html/partners/consulting/index.html");
//		menu7.addItem("&nbsp;Partner Extranet", "/html/partners/login/index.html");
				
		
		//Clients menu
//		var menu8 = ms.addMenu(document.getElementById("menu8"));
//		menu8.addItem("&nbsp;Overview", "/html/clients/index.html");
//		menu8.addItem("&nbsp;Testimonials ", "/html/clients/quotes/index.html");
//		menu8.addItem("&nbsp;Case Studies", "/html/clients/cases/index.html");
//		menu8.addItem("&nbsp;Referral Program", "/html/clients/referral/index.html");
//		menu8.addItem("&nbsp;Client Login", "/clients");
				
		//Render Drop Downs
		mtDropDown.renderAll();
	}
