	// 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("OurCompany"));
		menu1.addItem("About Us", "01_002_OurCompany.htm");
		menu1.addItem("Signtech Advantage", "01_001_Advantage.htm");
		//menu1.addItem("Our Team", "01_002_OurCompany.htm");
		menu1.addItem("Process", "01_003_Process.htm");
		menu1.addItem("Strategic Partners/Suppliers", "01_004_Partners.htm");
		menu1.addItem("Facilities", "01_005_Facilities.htm");
		menu1.addItem("Our Philosophy", "01_007_Philosophy.htm");
		menu1.addItem("Going Green", "01_008_GoingGreen.htm");
		//menu1.addItem("Equipment/Capabilities", "01_006_Equipment.htm");

		/*var submenu0 = menu1.addMenu(menu1.items[1]);
		submenu0.addItem("", "");

   		var submenu00 = submenu0.addMenu(submenu0.items[0]);
	        submenu00.addItem("foo");
	        submenu00.addItem("bar");*/
		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("Services"));
		menu2.addItem("Our Services", "02_001_Services.htm");
		menu2.addItem("Rebranding", "02_004_Rebranding.htm");
		menu2.addItem("Project Management", "02_003_ProjectManagement.htm");
		menu2.addItem("Job Tracker", "02_002_JobTracker.htm");
		menu2.addItem("Sign Maintenance", "02_005_Maintenance.htm");
		menu2.addItem("Manufacturing", "02_006_Manufacturing.htm");
		menu2.addItem("Site Surveys", "02_007_SiteSurveys.htm");
		menu2.addItem("Design", "02_008_Design.htm");
		menu2.addItem("Installation", "02_009_Installation.htm");
		menu2.addItem("Warranty", "02_010_Warranty.htm");
		menu2.addItem("Digital Imaging", "02_011_Digital.htm");


		//==================================================================================================

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("Portfolio"));
		menu3.addItem("Recent Work", "04_001_Portfolio.htm#recentwork"); 
		menu3.addItem("Sea World Project", "04_001_Portfolio.htm#seaworld"); 
		menu3.addItem("Channel Letters", "04_001_Portfolio.htm#channelletters"); 
		menu3.addItem("Halo Lighted Letters", "04_001_Portfolio.htm#halolightedletters");
		menu3.addItem("Pylons & Poles", "04_001_Portfolio.htm#pylonspoles");
		menu3.addItem("Monuments", "04_001_Portfolio.htm#monument");
		menu3.addItem("Neon Signs", "04_001_Portfolio.htm#neon");
		menu3.addItem("Cabinets/Routed", "04_001_Portfolio.htm#cabinetsrouted");
		menu3.addItem("Projecting/Blade Signs", "04_001_Portfolio.htm#projectingblade");
		menu3.addItem("Fascia Bands", "04_001_Portfolio.htm#fasciabands");
		menu3.addItem("Lobby Logos", "04_001_Portfolio.htm#lobbylogos");
		menu3.addItem("Sandblasted Wood", "04_001_Portfolio.htm#sandblastedwood");

		//menu3.addItem("Plastic/Cast Letters", "04_001_Portfolio.htm#plasticcastletters");
		//menu3.addItem("ADA/Architectual", "04_001_Portfolio.htm#adaarchitectural");
		//menu3.addItem("Post & Panel", "04_001_Portfolio.htm#postpanel");
		//menu3.addItem("Digital Graphics", "04_001_Portfolio.htm");

		//==================================================================================================


		//==================================================================================================
		var menu6 = ms.addMenu(document.getElementById("ContactUs"));
		//menu6.addItem("Locations", "07_002_Locations.htm");
		menu6.addItem("Contact Info", "07_001_Contact.htm");
		menu6.addItem("Employment", "07_003_Employment.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();
	}