  function init() {
	    if (TransMenu.isSupported()) 
	    {
			TransMenu.initialize();
            document.getElementById("mtm_home").onmouseover = function() { ms.hideCurrent(); this.className = "hover"; }
            document.getElementById("mtm_home").onmouseout = function() { this.className = ""; }           
            menu2.onactivate = function() { document.getElementById("mtm_about").className = "hover"; };
            menu2.ondeactivate = function() { document.getElementById("mtm_about").className = ""; };
			menu3.onactivate = function() { document.getElementById("mtm_location").className = "hover"; };
            menu3.ondeactivate = function() { document.getElementById("mtm_location").className = ""; };
            menu4.onactivate = function() { document.getElementById("mtm_dev").className = "hover"; };
            menu4.ondeactivate = function() { document.getElementById("mtm_dev").className = ""; };
			menu5.onactivate = function() { document.getElementById("mtm_service").className = "hover"; };
            menu5.ondeactivate = function() { document.getElementById("mtm_service").className = ""; };
            document.getElementById("mtm_contact_us").onmouseover = function() { ms.hideCurrent(); this.className = "hover"; }
            document.getElementById("mtm_contact_us").onmouseout = function() { this.className = ""; }
	 	}
      }
