	if (mtDropDown.isSupported()) {

		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("About ATG", "/About/index.htm"); // send no URL if nothing should happen onclick
  		menu1.addItem("ATG's Mission Statement", "/About/mission.htm"); // send no URL if nothing should happen onclick
		menu1.addItem("Why Choose ATG", "/About/whyatg.htm");
		menu1.addItem("ATG Leadership Profiles", "/About/leadership.htm");
		menu1.addItem("Privacy Statement", "/privacystatement.htm");		
	
		
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Overview", "/services"); // send no URL if nothing should happen onclick
  		menu2.addItem("FAQ", "/services/faq.htm"); // send no URL if nothing should happen onclick

		
		var menu3 = ms.addMenu(document.getElementById("menu3"));
  		menu3.addItem("Rental", "/QuoteRequest/rental.htm"); // send no URL if nothing should happen onclick
		menu3.addItem("Auto Auction", "/QuoteRequest/auction.htm"); // send no URL if nothing should happen onclick
		menu3.addItem("Fleet", "/QuoteRequest/fleet.htm");
				

		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("Why Join the ATG Team", "/Careers/whyatg.htm"); // send no URL if nothing should happen onclick
  		menu5.addItem("Benefits", "/Careers/benefits.htm"); // send no URL if nothing should happen onclick
		menu5.addItem("Team Orientation", "/Careers/teamorientation.htm");
		menu5.addItem("Work Environment", "/Careers/workenvironment.htm");
		menu5.addItem("Job Openings", "/Careers/index.htm");


		


		//Render Drop Downs
		mtDropDown.renderAll();
	}
