	// set up drop downs anywhere in the body of the page. I think the bottom of the page is better.. 
	// but you can experiment with effect on loadtime.
	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
		//==================================================================================================
		var ms = new TransMenuSet(TransMenu.direction.down, 1, 0, TransMenu.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the php element which will act actuator for the menu
		//==================================================================================================
		var menu1 = ms.addMenu(document.getElementById("mainNav1"));
		menu1.addItem("Company Overview", "company/overview.php"); 
		menu1.addItem("Leadership", "company/leadership.php"); 
		menu1.addItem("Recent News", "company/recentNews.php"); 
		menu1.addItem("Join Us", "company/joinUs.php"); 

			var submenu0 = menu1.addMenu(menu1.items[1]);
			submenu0.addItem("Michael Reilly, CEO", "company/michaelReilly.php");
			submenu0.addItem("Craig Sieve, COO", "company/craigSieve.php");
			submenu0.addItem("John Dodge, CIO", "company/johnDodge.php");
			submenu0.addItem("Dale Lahue, CTO", "company/daleLahue.php");

			    //var submenu00 = submenu0.addMenu(submenu0.items[0]);
			    //submenu00.addItem("foo");
			    //submenu00.addItem("bar");

			var submenu0 = menu1.addMenu(menu1.items[2]);
			submenu0.addItem("Newsletter", "company/newsLetter.php");
			submenu0.addItem("Testimonials", "company/testimonials.php");

			var submenu0 = menu1.addMenu(menu1.items[3]);
			submenu0.addItem("Opportunities", "company/opportunities.php");
			submenu0.addItem("Benefits", "company/benefits.php");
			submenu0.addItem("Working at Foedus", "company/workingatFoedus.php");

		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("mainNav2"));
		menu2.addItem("Overview", "solutions/overview.php");
		menu2.addItem("Business Solutions", "solutions/businessSolutions.php");
		menu2.addItem("Industry Solutions", "solutions/industrySolutions.php");
		menu2.addItem("Technology Solutions", "solutions/technologySolutions.php");
		menu2.addItem("Document & Datasheets", "solutions/documentDatasheets.php");

			var submenu1 = menu2.addMenu(menu2.items[1]);
			submenu1.addItem("Datacenter Consolidation & Containment", "solutions/datacenterConsolidation.php");
			submenu1.addItem("Regulatory Compliance", "solutions/regulatoryCompliance.php");
			submenu1.addItem("Business Continuity & Disaster Recovery", "solutions/businessContinuity.php");
			submenu1.addItem("Accelerated Application Development", "solutions/acceleratedApplication.php");
			submenu1.addItem("Remote Office Optimization", "solutions/remoteOffice.php");
			submenu1.addItem("Application & Desktop Virtualization", "solutions/application.php");

			var submenu1 = menu2.addMenu(menu2.items[2]);
			submenu1.addItem("Healthcare", "solutions/healthcare.php");
			submenu1.addItem("Financial", "solutions/financial.php");
			submenu1.addItem("Retail & Manufacturing", "solutions/retailManufacturing.php");
			submenu1.addItem("Legal", "solutions/legal.php");
			submenu1.addItem("Life Sciences", "solutions/lifeSciences.php");
			submenu1.addItem("Technology", "solutions/technology.php");

			var submenu1 = menu2.addMenu(menu2.items[3]);
			submenu1.addItem("Virtual Infrastructure Design & Integration", "solutions/virtualInfrastructure.php");
			submenu1.addItem("Storage & Data Management", "solutions/storageDataManagement.php");
			submenu1.addItem("Information Security", "solutions/informationSecurity.php");
			submenu1.addItem("Microsoft Consulting", "solutions/microsoftConsulting.php");
	
			var submenu1 = menu2.addMenu(menu2.items[4]);
			submenu1.addItem("Product Overviews", "solutions/productOverviews.php");
			submenu1.addItem("Whitepapers", "solutions/whitepapers.php");
			submenu1.addItem("Business Case Studies", "solutions/businessCaseStudies.php");
			submenu1.addItem("Services", "solutions/Vulnerability%20Assessment.php");

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("mainNav3"));
		menu3.addItem("Overview", "methodology/overview.php");
		menu3.addItem("The Foedus Engagement Methodology", "methodology/theFoedusEngagement.php");

              var submenu1 = menu3.addMenu(menu3.items[1]);
			  submenu1.addItem("Assess", "methodology/methodology.php#assess");
              submenu1.addItem("Design", "methodology/methodology.php#design");
			  submenu1.addItem("Deliver", "methodology/methodology.php#deliver");
			  submenu1.addItem("Manage", "methodology/methodology.php#manage");
		//==================================================================================================
		/*var menu4 = ms.addMenu(document.getElementById("mainNav4"));
		menu4.addItem("Pressroom Overview", "pressroomOverview.php");
		menu4.addItem("Press Releases", "pressReleases.php");
		menu4.addItem("Upcoming Events", "upcomingEvents.php");
		menu4.addItem("Company Backgrounder", "companyBackgrounder.php");
		menu4.addItem("FAQ's", "faq.php");
		menu4.addItem("Press Kit", "pressKit.php");
		
		
              var submenu1 = menu4.addMenu(menu4.items[2]);
			  submenu1.addItem("Trade Shows & Conferences", "tradeshowsandConferences.php");
              submenu1.addItem("Foedus Virtual World", "foedusVirtualWorld.php");
			  submenu1.addItem("Seminars", "seminars.php");
			  submenu1.addItem("Webinars", "webinars.php");
*/
		// write drop downs into page
		//==================================================================================================
		// this method writes all the php for the menus into the page with document.write(). It must be
		// called within the body of the php page.
		//==================================================================================================
		TransMenu.renderAll();
	}
