		if (mtDropDown.isSupported()) {
		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);
		
		
		
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("Bookkeeping","bookkeeping.html");
		menu1.addItem("Payroll Processing","bookkeeping.html#pay");
		menu1.addItem("Tax Returns Processing","bookkeeping.html#tax");
	   menu1.addItem("Business Plans & Financial Projections","bookkeeping.html#businessplan");

		var submenu1 = menu1.addMenu(menu1.items[2]);
		submenu1.addItem("Domestic Clients","bookkeeping.html#domestic");
		submenu1.addItem("International Clients ","bookkeeping.html#inter");
		

		mtDropDown.renderAll();


		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Corporate / Business Laws","corporate-business-laws.html#corporate");
		menu2.addItem("Management Consultancy","corporate-business-laws.html#management");
		

		mtDropDown.renderAll();
        

		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("Market Research","market-research.html#market");
		menu3.addItem("Web Research Services","market-research.html#web");

		var submenu3 = menu3.addMenu(menu3.items[0]);
		submenu3.addItem("Your Benefits","market-research.html#benefits");	  
	
		var submenu3 = menu3.addMenu(menu3.items[1]);
	/*	submenu3.addItem("Outsourcing Process Flow","market-research.html#outsourcing");*/
		submenu3.addItem("Your Benefits","market-research.html#benefits1");


		mtDropDown.renderAll();

		


         
	}