	if (siteDropDown.isSupported()) {

		//==================================================================================================
		// create dropdowns
		//==================================================================================================
	
		var ms = new siteDropDownSet(siteDropDown.direction.down, 0, 0, siteDropDown.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		//var menu1 = ms.addMenu(document.getElementById("menu1"));
		//menu1.addItem("- foo", "#"); // send no URL if nothing should happen onclick
		
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("- Our Sales Team", urlRoot + "abteam.html"); // send no URL if nothing should happen onclick
		menu2.addItem("- News & Events", urlRoot + "abnews.html");
		menu2.addItem("- Showrooms", "abshowrooms.html");
		menu2.addItem("- Contact Us", urlRoot + "contact.html");
		menu2.addItem("- Credit Application", urlRoot + "abcredit.html");
		menu2.addItem("- Organizations", urlRoot + "aborganizations.html");
			
		// menu
    	var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("- Shower Door Enclosures", urlRoot + "prshower.html");
		menu3.addItem("- Framed Mirrors", urlRoot + "prframedmirrors.html");
		menu3.addItem("- Mirrors", "prmirrors.html");
		menu3.addItem("- Glass", urlRoot + "prglass.html"); // send no URL if nothing should happen onclick
		menu3.addItem("- Leaded Glass", urlRoot + "prleadedglass.html");
		menu3.addItem("- Table Tops", urlRoot + "prtabletops.html");
		menu3.addItem("- By-Pass Doors", urlRoot + "prbypass.html");
		menu3.addItem("- Glass Etching", urlRoot + "prglassetching.html");
		menu3.addItem("- Commercial", urlRoot + "prcommercial.html");
		menu3.addItem("- Brochures", urlRoot + "prbrochures.html");
		menu3.addItem("- Quote", urlRoot + "prquote.html");
		

		// menu
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("- Installation", urlRoot + "svinstallation.html");
		menu4.addItem("- Residential", "svresidential.html");
		menu4.addItem("- Commercial", "svcommercial.html");
		menu4.addItem("- Shipping", urlRoot + "svshipping.html");
		menu4.addItem("- Warranty", urlRoot + "svwarranty.html");
		

		// menu
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("- Shower Door Enclosures", urlRoot + "gashower.html");
		menu5.addItem("- Framed Mirrors", urlRoot + "gaframedmirrors.html");
		menu5.addItem("- Mirrors", "gamirrors.html");
		menu5.addItem("- Glass", urlRoot + "gaglass.html"); // send no URL if nothing should happen onclick
		menu5.addItem("- Leaded Glass", urlRoot + "galeadedglass.html");
		menu5.addItem("- Table Tops", urlRoot + "gatabletops.html");
		menu5.addItem("- By-Pass Doors", urlRoot + "gabypass.html");
		menu5.addItem("- Glass Etching", urlRoot + "gaglassetching.html");
		menu5.addItem("- Commercial", urlRoot + "gacommercial.html");
		
		// menu
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("- Apply Online", "caapplyonline.html");
		menu6.addItem("- Job Search", urlRoot + "cajobsearch.html");
		menu6.addItem("- Career Overview", "cacareeroverview.html");
		menu6.addItem("- FAQ", urlRoot + "cafaq.html");
		menu6.addItem("- Benefits", urlRoot + "cabenefits.html");
		menu6.addItem("- Fashion Culture", urlRoot + "caculture.html");

		
		// menu
		var menu7 = ms.addMenu(document.getElementById("menu7"));

		menu7.addItem("- Locations & Directions", urlRoot + "colocations.html");
		menu7.addItem("- Quote", urlRoot + "prquote.html");
		menu7.addItem("- Schedule Appointment", urlRoot + "coschedule.html");
		menu7.addItem("- Customer Feedback", urlRoot + "cofeedback.html");
		







		//==================================================================================================
		// write drop downs into page
		//==================================================================================================
		// this method writes all the HTML for the menus into the page with document.write(). It must be
		// called within the body of the HTML page.
		//==================================================================================================
		siteDropDown.renderAll();
	}
