// 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.right, 161, -27, TransMenu.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("projects"));
		menu1.addItem("&nbsp;Case Studies", "projects_case_studies.htm");
		menu1.addItem("&nbsp;Commercial", "projects_commercial.htm");
		menu1.addItem("&nbsp;Education", "projects_education.htm");
		menu1.addItem("&nbsp;Leisure", "projects_leisure.htm"); 
		menu1.addItem("&nbsp;Retail", "projects_retail.htm");
	
		
		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("Company"));
		menu2.addItem("&nbsp;Objectives", "company_overview_objectives.htm");
		menu2.addItem("&nbsp;Client List", "client_list.htm");
		menu2.addItem("&nbsp;Experience", "experience.htm");
		menu2.addItem("&nbsp;Training", "training.htm");	
		
		
		//==================================================================================================

		var menu3 = ms.addMenu(document.getElementById("Services"));
		menu3.addItem("&nbsp;Energy", "our_services_energy.htm");
		menu3.addItem("&nbsp;Environmental Engineering", "our_services_environmental_engineering.htm");
		menu3.addItem("&nbsp;Feasibility Studies", "our_services_feasibility_studies.htm");
		menu3.addItem("&nbsp;Design & Management", "our_services_design_and_management.htm");
		menu3.addItem("&nbsp;Maintenance Audits", "our_services_maintenance_audits.htm");
		menu3.addItem("&nbsp;Cost Advice", "our_services_cost_advice.htm");
		menu3.addItem("&nbsp;Project Management", "our_services_project_management.htm");
		menu3.addItem("&nbsp;CAD", "our_services_computer_aided_design.htm");
		
		//==================================================================================================
		
		var menu5 = ms.addMenu(document.getElementById("Members"));
		menu5.addItem("&nbsp;Staff Email", "members_area_staff_email.htm");
		
		//==================================================================================================
		
		var menu6 = ms.addMenu(document.getElementById("News"));
		menu6.addItem("&nbsp;Archive", "news_archive.htm");
		
			//==================================================================================================
		
		var menu7 = ms.addMenu(document.getElementById("Careers"));
		menu7.addItem("&nbsp;Application Form", "careers_application_form.htm");
		
		
		//==================================================================================================
		// 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();
	}