function init() {
	if (TransMenu.isSupported()) {
		TransMenu.initialize();
		document.getElementById("mainpage").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}
		document.getElementById("mainpage").onmouseout = function() { this.className = ""; }
		menu0.onactivate = function() { document.getElementById("aboutus").className = "hover"; };
		menu0.ondeactivate = function() { document.getElementById("aboutus").className = ""; };
		menu1.onactivate = function() { document.getElementById("rooms").className = "hover"; };
		menu1.ondeactivate = function() { document.getElementById("rooms").className = ""; };
		document.getElementById("prices").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}
		document.getElementById("prices").onmouseout = function() { this.className = ""; }
		document.getElementById("photogallery").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}
		document.getElementById("photogallery").onmouseout = function() { this.className = ""; }
		document.getElementById("guestbook").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}
		document.getElementById("guestbook").onmouseout = function() { this.className = ""; }
		menu2.onactivate = function() { document.getElementById("information").className = "hover"; };
		menu2.ondeactivate = function() { document.getElementById("information").className = ""; };
		document.getElementById("transportation").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}
		document.getElementById("transportation").onmouseout = function() { this.className = ""; }
		document.getElementById("contactus").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}
		document.getElementById("contactus").onmouseout = function() { this.className = ""; }
	}
}