// 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, 0, 9, TransMenu.reference.bottomLeft);

	
	
	
		var menu1 = ms.addMenu(document.getElementById("1"));
		menu1.addItem("Oil Spill Response","index.php?id=3"); 
		menu1.addItem("Debris Containment","index.php?id=11"); 
		menu1.addItem("Safety Products","index.php?id=12"); 
		menu1.addItem("Water Control & Management","index.php?id=13"); 
		menu1.addItem("Covers and Liners","index.php?id=14"); 
	    menu1.addItem("Inflatables","index.php?id=15"); 
		menu1.addItem("Marine Lift Bags","index.php?id=16");
		menu1.addItem("Buildings & Tension Structures","index.php?id=17"); 
		menu1.addItem("Proprietary Fabrications","index.php?id=18"); 
	
		var menu3 = ms.addMenu(document.getElementById("2"));
		menu3.addItem("Custom Fabrication","index.php?id=20"); 
		menu3.addItem("Engineering Support","index.php?id=21"); 
		menu3.addItem("Storage Applications","index.php?id=22"); 
		menu3.addItem("Marine Applications","index.php?id=23"); 
		

        var menu2 = ms.addMenu(document.getElementById("3"));
		menu2.addItem("The Kepner Story","index.php?id=25"); 
		menu2.addItem("Kepner Plastics Firsts","index.php?id=26"); 
		menu2.addItem("Kepner Makes History","index.php?id=27"); 
		menu2.addItem("Careers","index.php?id=28"); 
		menu2.addItem("News","index.php?id=29"); 
		 

		
		

	

		TransMenu.renderAll();
	}