function init() 
{
	// 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.
	TransMenu.initialize();
}
	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.right, -10, 10, TransMenu.reference.topRight);

	//==================================================================================================
	// create a dropdown menu
	//==================================================================================================
	// the first parameter should be the HTML element which will act actuator for the menu
	//==================================================================================================
	//var menuitem_1 = ms.addMenu(document.getElementById('menuitem_1')) 
	//menuitem_1.onactivate = function() { document.getElementById('menuitem_1').className = 'hover' } 
	//menuitem_1.ondeactivate = function() { document.getElementById('menuitem_1').className = '' } 
	//menuitem_1.addItem('Test 1', '/') 
	//menuitem_1.addItem('Test 2', '/') 
	//menuitem_1.addItem('Test 3', '/')
	var menuitem_2 = ms.addMenu(document.getElementById('menuitem_2')) 
	menuitem_2.onactivate = function() { document.getElementById('menuitem_2').className = 'hover' } 
	menuitem_2.ondeactivate = function() { document.getElementById('menuitem_2').className = '' } 
	menuitem_2.addItem('<b><u>Corporate Information</u></b>', 'corporate.html') 
	menuitem_2.addItem('Primary Customer Contact', 'epsexec.html') 
	//menuitem_2.addItem('Careers', 'careers.html') 
	//menuitem_2.addItem('Information request', 'inforequest.html')
	var menuitem_3 = ms.addMenu(document.getElementById('menuitem_3')) 
	menuitem_3.onactivate = function() { document.getElementById('menuitem_3').className = 'hover' } 
	menuitem_3.ondeactivate = function() { document.getElementById('menuitem_3').className = '' } 
	menuitem_3.addItem('<b><u>Business Solutions</u></b>', 'business.html') 
	menuitem_3.addItem('Tactical Portfolio, Program & Resource Management', 'epmworkforce.html') 
	menuitem_3.addItem('Reporting & Analysis System', 'RAS.html') 
	menuitem_3.addItem('Lean Transformation & Business Process Analysis', 'lean.html')
	menuitem_3.addItem('Retrospective Network Analysis', 'RNA.html')
	//menuitem_3.addItem('Baseline AppDev Alignment', 'appdevworkshop.html') 
	var menuitem_4 = ms.addMenu(document.getElementById('menuitem_4')) 
	menuitem_4.onactivate = function() { document.getElementById('menuitem_4').className = 'hover' } 
	menuitem_4.ondeactivate = function() { document.getElementById('menuitem_4').className = '' } 
	menuitem_4.addItem('<b><u>Business Support Services</u></b>', 'businessservices.html') 
	menuitem_4.addItem('Business Support Services Processes', 'bssprocess.html') 
	//menuitem_4.addItem('Customer Care', 'customercare.html') 
	//menuitem_4.addItem('Sales Support', 'salessupport.html') 

	//==================================================================================================
	// 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();
}
init();