function init_menu() {
			if (TransMenu.isSupported()) {
				TransMenu.initialize();

				menu1.onactivate = function() { document.getElementById("services").className = "hover"; };
				menu1.ondeactivate = function() { document.getElementById("services").className = ""; };

				document.getElementById("about").onmouseover = function() {
					ms.hideCurrent();
					this.className = "hover";
				}
				document.getElementById("about").onmouseout = function() { this.className = ""; }

				document.getElementById("staff").onmouseover = function() {
					ms.hideCurrent();
					this.className = "hover";
				}

				document.getElementById("staff").onmouseout = function() { this.className = ""; }

				document.getElementById("mission").onmouseover = function() {
					ms.hideCurrent();
					this.className = "hover";
				}
				document.getElementById("mission").onmouseout = function() { this.className = ""; }
				
				document.getElementById("links").onmouseover = function() {
					ms.hideCurrent();
					this.className = "hover";
				}
				document.getElementById("links").onmouseout = function() { this.className = ""; }
				
				document.getElementById("contact").onmouseover = function() {
					ms.hideCurrent();
					this.className = "hover";
				}
				document.getElementById("contact").onmouseout = function() { this.className = ""; }
		}
	}
