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

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

		// menu item: about
		document.getElementById("about").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}
		document.getElementById("about").onmouseout = function() { this.className = ""; }
		
		// menu item: trainiing
		document.getElementById("training").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}
		document.getElementById("training").onmouseout = function() { this.className = ""; }
		
		// menu item: schedules
		menu1.onactivate = function() { document.getElementById("schedules").className = "hover"; };
		menu1.ondeactivate = function() { document.getElementById("schedules").className = ""; };
		
		// menu item: descriptions
		document.getElementById("descriptions").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}
		document.getElementById("descriptions").onmouseout = function() { this.className = ""; }
		
		// menu item: workshops
		document.getElementById("workshops").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}
		document.getElementById("workshops").onmouseout = function() { this.className = ""; }
		
		// menu item: gallery
		document.getElementById("gallery").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}
		document.getElementById("gallery").onmouseout = function() { this.className = ""; }
		
		// menu item: register
		document.getElementById("register").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}
		document.getElementById("register").onmouseout = function() { this.className = ""; }

	}
}