	// 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, 2, 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("company"));
		menu1.addItem("Background", "company.php"); 
		menu1.addItem("Management", "management.php"); // send no URL if nothing should happen onclick
//		menu1.addItem("Board of Directors", "bod.php"); // send no URL if nothing should happen onclick
//		menu1.addItem("Investors", "investors.php"); // send no URL if nothing should happen onclick
		menu1.addItem("Careers", "careers.php"); // send no URL if nothing should happen onclick
		
		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("markets"));
		menu2.addItem("Broadcast", "markets_broadcast.php");
		menu2.addItem("Imaging", "markets_imaging.php");
		menu2.addItem("Military/Aerospace", "markets_military_aerospace.php");
		menu2.addItem("Data Transport", "markets_data_transport.php");
		//menu2.addItem("Test &amp; Measure", "markets_test_measure.php");
		
		//==================================================================================================

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("products"));
		menu3.addItem("Overview", "products.php");
		menu3.addItem("NI-9065", "products_ni_9065.php");
//		menu3.addItem("NI-2060/61", "products_ni_2060.php");	
//		menu3.addItem("NI-2065/66", "products_ni_2065.php");
	//	menu3.addItem("Merced Platform", "products_merced.php");
		menu3.addItem("Am2045", "products_am2045_overview.php");
		menu3.addItem("Am2045 Boards", "products_am2045_da_board.php");
		menu3.addItem("FastPipe&trade; 2x 10GbE HBA", "products_fastpipe.php");
		//menu3.addItem("Azores&trade; 100", "products_azores.php");
		//==================================================================================================

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("technology"));
		menu4.addItem("ISP", "technologies_isp.php");
		menu4.addItem("MPPA", "technologies_mppa.php");
		//menu4.addItem("High Speed Storage", "technologies_hs_storage.php");
		menu4.addItem("High Speed Switch Fabric", "technologies_hssf.php");
		//menu4.addItem("Events", "events.php");
		//menu4.addItem("Downloads", "downloads.php");				
		//==================================================================================================
		
		//==================================================================================================
		var menu5 = ms.addMenu(document.getElementById("media"));
		menu5.addItem("US News", "news/us_news.php");
		menu5.addItem("Editorial Contact", "media_contact.php");
		menu5.addItem("Press Releases", "press.php");
		menu5.addItem("Events", "events.php");
		menu5.addItem("Downloads", "downloads.php");				
		//==================================================================================================
		
		//==================================================================================================
		var menu6 = ms.addMenu(document.getElementById("contact"));
		menu6.addItem("Corporate", "contact.php");
		menu6.addItem("Sales Rep/Distributors", "sales.php");	
		menu6.addItem("Request Info", "request.php");			
		//==================================================================================================	

		//==================================================================================================
		var menu7 = ms.addMenu(document.getElementById("partners"));
		menu7.addItem("Overview", "partners.php");
		//menu5.addItem("Japan News", "news/japan_news.php");	
		//menu5.addItem("Korean News", "news/korean_news.php");	
		//menu5.addItem("Chinese News", "news/chinese_news.php");	
		//==================================================================================================
		
	
		//==================================================================================================
		// 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();
	}