function init() {
	if (TransMenu.isSupported()) {
		TransMenu.initialize();
		menu_AboutUs.onactivate = function() {document.getElementById('AboutUs').className = 'hover'; };
		menu_AboutUs.ondeactivate = function() {document.getElementById('AboutUs').className = ''; };
		menu_Provider.onactivate = function() {document.getElementById('Provider').className = 'hover'; };
		menu_Provider.ondeactivate = function() {document.getElementById('Provider').className = ''; };

	}
}

if (TransMenu.isSupported()) {
	var ms = new TransMenuSet(TransMenu.direction.down, 1, 0, TransMenu.reference.bottomLeft);

	var menu_AboutUs = ms.addMenu(document.getElementById("AboutUs"));
		menu_AboutUs.addItem("Business Philosophy","http://www.mba-nc.com/BusinessPhilosophy.htm","");
		menu_AboutUs.addItem("Management","http://www.mba-nc.com/cgi-bin/aw/acuweb.cgi?t=management.htm&s=mbanc","");
		menu_AboutUs.addItem("Employment","http://www.mba-nc.com/Employment.htm","");
		menu_AboutUs.addItem("Location","http://www.mba-nc.com/Location.htm","");

	var menu_Provider = ms.addMenu(document.getElementById("Provider"));
		menu_Provider.addItem("Services Offered","http://www.mba-nc.com/Provider.htm","");
		var submenu_ServicesOffered = menu_Provider.addMenu(menu_Provider.items[0]);
		menu_Provider.addItem("FAQ","http://www.mba-nc.com/FAQs.htm","");
		menu_Provider.addItem("Downloads","http://www.mba-nc.com/Downloads.php","");
		menu_Provider.addItem("Case Studies","http://www.mba-nc.com/CaseStudies.htm","");
		menu_Provider.addItem("My Account","https://eaccess2.mba-nc.com/2xwebportal/Logon.aspx?company=login","blank");
			submenu_ServicesOffered.addItem("Medical Billing","http://www.mba-nc.com/BillingServices.php","");
			submenu_ServicesOffered.addItem("Credentialing","http://www.mba-nc.com/CredentialingServices.php","");

	TransMenu.renderAll();
}
