var d=document;

var men0Col, men1BgCol, men0BgCol;
men0BgCol = "#dedede";
men0Col = men1Col = "#000000";
men1BgCol = "#cccccc";
function initMenu() {
	var menArr = d.getElementById("menuDIV").getElementsByTagName("DIV");
	for ( i=0; i<menArr.length; i++ ) {
		if ( menArr[i].className!="menHead" ) {
		menArr[i].onclick = function() {
			location.href = this.id;
		}
		menArr[i].onmouseover = function() {
			this.style.color = "#ffffff";
			this.style.backgroundColor = "#336699";
		}
		menArr[i].onmouseout = function() {
			this.style.color = eval(this.className+"Col");
			this.style.backgroundColor = eval(this.className+"BgCol");
		}
		}
		menArr[i].style.width = (d.all)? 140 : 120;
		menArr[i].style.display = "block";
	}
}
