function init() {
	
	if (TransMenu.isSupported()) {
		TransMenu.initialize();
		
		//The following code will disable any classes you apply to your menu actuators.
		/*
		menu1.onactivate = function() { document.getElementById("RatesLink").className = "hover"; };
		menu1.ondeactivate = function() { document.getElementById("RatesLink").className = ""; };
		
		menu2.onactivate = function() { document.getElementById("TraingingsLink").className = "hover"; };
		menu2.ondeactivate = function() { document.getElementById("TraingingsLink").className = ""; };
		
		menu3.onactivate = function() { document.getElementById("RegionalNewsLink").className = "hover"; };
		menu3.ondeactivate = function() { document.getElementById("RegionalNewsLink").className = ""; };
		
		menu4.onactivate = function() { document.getElementById("CurriculumLink").className = "hover"; };
		menu4.ondeactivate = function() { document.getElementById("CurriculumLink").className = ""; };
		
		menu5.onactivate = function() { document.getElementById("ResourcesLink").className = "hover"; };
		menu5.ondeactivate = function() { document.getElementById("ResourcesLink").className = ""; };
		*/
	}
}

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
//==================================================================================================

// About Us
var menu1 = ms.addMenu(document.getElementById("aboutus"));
menu1.addItem("&raquo;&nbsp;ABOUT RUGGED MOBILE GROUP", "aboutus.asp?content=aboutus");
menu1.addItem("&raquo;&nbsp;OUR VALUES (Vision)", "aboutus.asp?content=vision");
menu1.addItem("&raquo;&nbsp;WHAT WE DO", "aboutus.asp?content=whatwedo");
menu1.addItem("&raquo;&nbsp;WHO WE ARE: Consultants Bios Section", "aboutus.asp?content=whoweare");
menu1.addItem("&raquo;&nbsp;OUR CLIENTS", "aboutus.asp?content=clients");

// Services
var menu3 = ms.addMenu(document.getElementById("services"));
menu3.addItem("&raquo;&nbsp;SERVICES &amp; SUPPORT", "services.asp?services=services");
menu3.addItem("&raquo;&nbsp;CONSULTING &amp; PROGRAM MANAGEMENT ", "services.asp?services=consulting");
//menu3.addItem("&raquo;&nbsp;Service 3", "services.asp?services=services");
//menu3.addItem("&raquo;&nbsp;Service 4", "services.asp?services=services");

// Dropdown for About Us
//var menu2 = ms.addMenu(document.getElementById("aboutus"));
//menu2.addItem("History/Overview", "aboutus.asp?aboutus=history#content");
//menu2.addItem("Virtual Tour (Coming Soon!)", "aboutus.asp?aboutus=history#content");
//menu2.addItem("Insurance", "aboutus.asp?aboutus=insurance#content");
//menu2.addItem("Permits", "aboutus.asp?aboutus=permits#content");


TransMenu.renderAll();
}





