//change when DNS propagates live
baseHref = "";

	if (DropDown.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 DropDownSet(DropDown.direction.down, -2, 1, DropDown.reference.bottomLeft);
                                                        //x , y    
		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		//var topLevelIds = new Array(5963,5964,5965,5966,5967,6062,5968)
		
	
		//GLOBAL NAV --- button 1
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("Office Solutions", "/solutions_office.asp");
		menu1.addItem("Enterprise Solutions", "/solutions_enter.asp"); 
		menu1.addItem("Legal Solutions", "/solutions_legal.asp"); 
		menu1.addItem("Education Solutions", "/solutions_edu.asp");  
		menu1.addItem("More Solutions", "/solutions_more.asp");  
		
	
		
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Equitrac Professional 5", "/product_detail_ep.asp");
		menu2.addItem("Equitrac Express 4", "/product_detail_ee.asp"); 
		menu2.addItem("Equitrac Office 4", "/product_detail_eo.asp"); 
		
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("Service Offerings", "/support_service.asp");
		menu3.addItem("Installation Services", "/support_install.asp");
		menu3.addItem("Services Requests", "/support_requests.asp");
		menu3.addItem("Product Registration", "https://activation.equitrac.com/register/");
		menu3.addItem("Product Documentation", "/documentation/");
		menu3.addItem("Product Certification Training", "https://activation.equitrac.com/certification/");
		menu3.addItem("Equitrac University Login", "http://equitracuniversity.equitrac.com/Centra-CKS/login/index.asp");
		menu3.addItem("Equitrac Cable Order Information", "/support_cableorder.asp");
		
		
		//var menu4 = ms.addMenu(document.getElementById("menu4"));

		
		DropDown.renderAll();
	}
