// 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, 2, TransMenu.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//=================================================================================================


		//==================================================================================================
		//Profile Menu
		//==================================================================================================
		
		var menu1 = ms.addMenu(document.getElementById("1"));
		menu1.addItem("Key Management Staff","index.php?id=22"); 
		menu1.addItem("Career Opportunities","index.php?id=23"); 
		menu1.addItem("Working at R.G. Miller Engineers","index.php?id=26"); 
		menu1.addItem("What's Happening Here","index.php?id=27"); 
		
		//SubMenu	I	
		var submenu0 = menu1.addMenu(menu1.items[0]);
		submenu0.addItem("Jack P. Miller, PE", "index.php?id=15");
		submenu0.addItem("Fred C. Bauhof, PE", "index.php?id=18");
		submenu0.addItem("Andrew M. Paderanga, PE", "index.php?id=12");
		submenu0.addItem("Duane Barrett, PE, CFM", "index.php?id=14");
		submenu0.addItem("Jesse Garcia, PE", "index.php?id=16");
		submenu0.addItem("Barry L. Shoemake, PE, CFM", "index.php?id=13");
		submenu0.addItem("Robert H. Siegfried, PE", "index.php?id=47");
		
		//SubMenu	II	
		var submenu0 = menu1.addMenu(menu1.items[1]);
		submenu0.addItem("Current Job Postings", "index.php?id=24");
		submenu0.addItem("Upcoming College Visits", "index.php?id=25");
		
		//SubMenu	III
		var submenu0 = menu1.addMenu(menu1.items[3]);
		submenu0.addItem("Company Activities", "index.php?id=28");
		submenu0.addItem("News", "index.php?id=29");
		//==================================================================================================

		


		TransMenu.renderAll();
	}