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

	var menu1 = ms.addMenu(document.getElementById("company"));
		menu1.addItem("Overview", "/company.php");
		menu1.addItem("Management", "/management.php");
		menu1.addItem("Value Proposition", "/vision.php");
		menu1.addItem("Mission Statement", "/missionstatement.php");
		menu1.addItem("Partners", "/partners.php");

	var menu2 = ms.addMenu(document.getElementById("services"));
		menu2.addItem("IT Consulting", "/itconsulting.php");
			var subMenu01 = menu2.addMenu(menu2.items[0]);
			    subMenu01.addItem("Services Overview","/itconsulting.php");
				subMenu01.addItem("Cloud Services","/itconsulting_aws.php");
				subMenu01.addItem("WebSphere Migration Services","/itconsulting_websphere_migration.php");

		menu2.addItem("IT Staffing", "/staffingservice.php");
			var subMenu0 = menu2.addMenu(menu2.items[1]);
				subMenu0.addItem("Job Opportunities","/job_list.php");
				subMenu0.addItem("Referral Rewards","/referralrewards.php");
		menu2.addItem("Small Business Solutions", "/smbservices.php");

	var menu4 = ms.addMenu(document.getElementById("clients"));
		//menu4.addItem("Listing Logos", "/clients.php");
		menu4.addItem("Success Stories", "/testimonial_list.php");
		//menu4.addItem("Case Studies", "/casestudies.php");

mtDropDown.renderAll();
}