// 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 HTML element which will act actuator for the menu
		//==================================================================================================
		var menu1 = ms.addMenu(document.getElementById("Production"));
		menu1.addItem("Galleries", "production/photo_galleries.html"); 
        menu1.addItem("Before and After", "before_after/index.html")
        menu1.addItem("Client Comments", "production/comments.html")
        menu1.addItem("Equipment List", "production/equipment_list.html")

	
		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("Sales"));
		menu2.addItem("Retail Sales", "sales/retail_sales.html");
        menu2.addItem("Project Sales", "sales/project_sales.html");
        menu2.addItem("Client Comments", "sales/comments.html");
    

		
		//==================================================================================================

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("Rentals"));
		menu3.addItem("Equipment", "rentals/equipment_rentals.html");
		menu3.addItem("Client Comments", "rentals/comments.html");


	
		//==================================================================================================
		
		var menu4 = ms.addMenu(document.getElementById("Electric"));
		menu4.addItem("Hollywood Lights", "http://www.hollywoodlights.biz/", "_hl");
		
		
		//==================================================================================================
		
		var menu5 = ms.addMenu(document.getElementById("About"));
		menu5.addItem("Who Is HLS", "about/hollywood_lighting.html");
		menu5.addItem("Some Of Our Clients", "about/clients.html");
		menu5.addItem("Contact Us", "about/contact.html");
		menu5.addItem("Directions & Hours", "about/directions.html");
        menu5.addItem("Facebook | Portland", "http://www.facebook.com/pages/Portland-OR/Hollywood-Lighting-Services-Portland/94562337794", "_fbpdx");
		menu5.addItem("Facebook | Seattle", "http://www.facebook.com/pages/Hollywood-Lighting-Services-Seattle/49934424409?ref=mf", "_fbsea");
        menu5.addItem("You Tube", "http://www.youtube.com/user/hollywoodlighting", "_youtube");
  		menu5.addItem("Links", "about/links.html");
	  menu5.addItem("Our Sustainability Plan", "about/sustainability_plan.html");
	    menu5.addItem("Membership", "about/memberships.html");


		//==================================================================================================
	

		//==================================================================================================

		//==================================================================================================


		//==================================================================================================
		// 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();
	}