function init() {
	//==========================================================================================
	// if supported, initialize TransMenus
	//==========================================================================================
	// Check isSupported() so that menus aren't accidentally sent to non-supporting browsers.
	// This is better than server-side checking because it will also catch browsers which would
	// normally support the menus but have javascript disabled.
	//
	// If supported, call initialize() and then hook whatever image rollover code you need to do
	// to the .onactivate and .ondeactivate events for each menu.
	//==========================================================================================
	if (TransMenu.isSupported()) {
		TransMenu.initialize();
		
		document.getElementById("home").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}

		document.getElementById("home").onmouseout = function() { this.className = ""; }
				
//		document.getElementById("about_us").onmouseover = function() {
//			ms.hideCurrent();
//			this.className = "hover";
//		}
//
//		document.getElementById("about_us").onmouseout = function() { this.className = ""; }

		menu2.onactivate = function() { document.getElementById("about_us").className = "hover"; };
		menu2.ondeactivate = function() { document.getElementById("about_us").className = ""; };
		
//		document.getElementById("policies").onmouseover = function() {
//			ms.hideCurrent();
//			this.className = "hover";
//		}
//
//		document.getElementById("policies").onmouseout = function() { this.className = ""; }

		menu1.onactivate = function() { document.getElementById("paint_line").className = "hover"; };
		menu1.ondeactivate = function() { document.getElementById("paint_line").className = ""; };
		

//		document.getElementById("spotlight").onmouseout = function() { this.className = ""; }	
//		document.getElementById("spotlight").onmouseover = function() {
//			ms.hideCurrent();
//			this.className = "hover";
//		}

		menu3.onactivate = function() { document.getElementById("spotlight").className = "hover"; };
		menu3.ondeactivate = function() { document.getElementById("spotlight").className = ""; };

		document.getElementById("product_line").onmouseout = function() { this.className = ""; }	
		document.getElementById("product_line").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}

		document.getElementById("ordering").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}

		document.getElementById("ordering").onmouseout = function() { this.className = ""; }
		
		document.getElementById("training").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}

		document.getElementById("training").onmouseout = function() { this.className = ""; }

		document.getElementById("links").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}

		document.getElementById("links").onmouseout = function() { this.className = ""; }
				
		document.getElementById("contact_us").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}

		document.getElementById("contact_us").onmouseout = function() { this.className = ""; }
	}
}

