/*******************************************************************************

*******************************************************************************/
var d = document, dE = d.documentElement;
var fixIEwidth = 0;

/* Hover support for drop downs in IE (Opera 7.23 also seems to need this too?!)
*******************************************************************************/

function menuHover() {
	var menuItems = d.getElementById("topnavi").getElementsByTagName("LI");

	for (var i = 0, miL = menuItems.length; i < miL; i++) {
		menuItems[i].onmouseover = function() {
			this.className = "mnhover";
		}
		menuItems[i].onmouseout = function() {
			this.className = "";
		}
	}
}

function change(xID,col,Fcol,Bw) {
	document.all[xID].style.backgroundColor = col;
	document.all[xID].style.color = Fcol;
	document.all[xID].style.width = Bw;
}

window.onload = function() {
	if (d.getElementById) {
		if (d.all) {
			menuHover();
		}
		// Opera wont switch css sometimes unless we do it onload! POS!
		if (navigator.userAgent.indexOf('Opera') != -1) {
			init();
			//alert("Your browser sucks!!");
		}
	}
}
