if (TransMenu.isSupported()) {
	var ms = new TransMenuSet(TransMenu.direction.down, 0,0, TransMenu.reference.bottomLeft);
	function init() {
		if (TransMenu.isSupported()) {
			TransMenu.initialize();
			document.getElementById("menu303").onmouseover = function() {
				ms.hideCurrent();
				this.className = "hover";
			}
			document.getElementById("menu303").onmouseout = function() { this.className = ""; 
		}
		document.getElementById("menu307").onmouseover = function() {
			ms.hideCurrent();
			this.className = "hover";
		}
		document.getElementById("menu307").onmouseout = function() { this.className = ""; 
	}
	document.getElementById("menu325").onmouseover = function() {
		ms.hideCurrent();
		this.className = "hover";
	}
	document.getElementById("menu325").onmouseout = function() { this.className = ""; 
}
document.getElementById("menu31").onmouseover = function() {
	ms.hideCurrent();
	this.className = "hover";
}
document.getElementById("menu31").onmouseout = function() { this.className = ""; }
document.getElementById("menu334").onmouseover = function() {
	ms.hideCurrent();
	this.className = "hover";
}
document.getElementById("menu334").onmouseout = function() { this.className = ""; }
document.getElementById("menu347").onmouseover = function() {
	ms.hideCurrent();
	this.className = "hover";
}
document.getElementById("menu347").onmouseout = function() { this.className = ""; }
document.getElementById("menu323").onmouseover = function() {
	ms.hideCurrent();
	this.className = "hover";
}
document.getElementById("menu323").onmouseout = function() { this.className = ""; }
}}

TransMenu.spacerGif = "images/x.gif";
TransMenu.dingbatOn = "images/submenu-on.gif";
TransMenu.dingbatOff = "images/submenu-off.gif"; 
TransMenu.sub_indicator = true; 
TransMenu.menuPadding = 0;
TransMenu.itemPadding = 0;
TransMenu.shadowSize = 2;
TransMenu.shadowOffset = 3;
TransMenu.shadowColor = "#888";
TransMenu.shadowPng = "images/grey-40.png";
TransMenu.backgroundColor = "#00a5e6";
TransMenu.backgroundPng = "images/white-90.png";
TransMenu.hideDelay = 600;
TransMenu.slideTime = 300;
TransMenu.selecthack = 1;
TransMenu.renderAll();
	if ( typeof window.addEventListener != "undefined" )
		window.addEventListener( "load", init, false );
	else if ( typeof window.attachEvent != "undefined" ) {
		window.attachEvent( "onload", init);
	}else{
		if ( window.onload != null ) {
			var oldOnload = window.onload;
			window.onload = function ( e ) {
				oldOnload( e );
				init();
			}
		}else
			window.onload = init();
		}
}
