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

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

		menu2.onactivate = function() { document.getElementById("products").className = "hover"; };
		menu2.ondeactivate = function() { document.getElementById("products").className = ""; };

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

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

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

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

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

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