function initMenuContent() {
	if (TransMenu.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
		//==================================================================================================
		ms = new TransMenuSet(TransMenu.direction.down, -1, 0, TransMenu.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		menu1 = ms.addMenu(document.getElementById("services"));
		menu1.addItem("HVAC Systems", "/services/hvac-systems/");
		menu1.addItem("Architectural Metal", "/services/architectural-metal/");
		menu1.addItem("Custom Fabrication", "/services/custom-fabrication/");
		menu1.addItem("Component Fabrication", "/services/component-fabrication/");
		menu1.addItem("Duct & Fittings Catalog", "/services/duct-fittings-catalog/");
		menu1.addItem("Drafting & Design", "/services/drafting-design/");
		menu1.addItem("Cost Estimating", "/services/cost-estimating/");
		menu1.addItem("Unistrut", "/services/unistrut/");
		//==================================================================================================

		//==================================================================================================
		menu2 = ms.addMenu(document.getElementById("projects"));
		menu2.addItem("Commercial", "/projects/commercial/");
		menu2.addItem("Residential", "/projects/residential/");
		menu2.addItem("Institutional", "/projects/institutional/");
		menu2.addItem("Industrial", "/projects/industrial/");
		menu2.addItem("Mechanical Retrofits", "/projects/mechanical-retrofits/");
		menu2.addItem("Seismic Upgrades", "/projects/seismic-upgrades/");
		menu2.addItem("Photo Gallery", "/projects/photo-gallery/");
		//==================================================================================================

		//==================================================================================================
		menu3 = ms.addMenu(document.getElementById("plant"));
		menu3.addItem("Overview", "/plant-capacity/");
		menu3.addItem("Equipment", "/plant-capacity/equipment/");
		menu3.addItem("CNC Punch / Laser Video", "/plant-capacity/cnc-laser-video/");
		menu3.addItem("CNC Brake Video", "/plant-capacity/cnc-brake-video/");
		//==================================================================================================

		//==================================================================================================
		menu4 = ms.addMenu(document.getElementById("about"));
		menu4.addItem("Overview", "/about/");
		menu4.addItem("History", "/about/history/");
		menu4.addItem("Management", "/about/management/");
		menu4.addItem("Certifications", "/about/certifications/");
		menu4.addItem("Safety Program", "/about/safety-program/");
		menu4.addItem("Brochure", "/about/brochure/");
		//==================================================================================================

		//==================================================================================================
		menu5 = ms.addMenu(document.getElementById("contact"));
		menu5.addItem("Contact Info", "/contact/");
		menu5.addItem("Request for Quote", "/contact/rfq/");
		menu5.addItem("FTP Site", "/contact/ftp-site/");
		menu5.addItem("Website Feedback", "/contact/website-feedback/");
		//==================================================================================================

		//==================================================================================================
		// 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.
		//==================================================================================================
		TransMenu.renderAll();
	}
}