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

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

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

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

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

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

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

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

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

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

	}
}
