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: health
		menu1.onactivate = function() { document.getElementById("health").className = "hover"; };
		menu1.ondeactivate = function() { document.getElementById("health").className = ""; };


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


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

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

	// menu item: info
		document.getElementById("info").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}
		document.getElementById("info").onmouseout = function() { this.className = ""; }
		
	// menu item: testimonials
		document.getElementById("testimonials").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}
		document.getElementById("testimonials").onmouseout = function() { this.className = ""; }
		
// menu item: guestbook
		document.getElementById("guestbook").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}
		document.getElementById("guestbook").onmouseout = function() { this.className = ""; }
		
		
// menu item: contact us
		document.getElementById("contact_us").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}
		document.getElementById("contact_us").onmouseout = function() { this.className = ""; }
		


}
}