function initPage()
{
	var _navRoot = document.getElementById("navigation");
	var _lis = _navRoot.getElementsByTagName("li");
	for (var i=0; i<_lis.length; i++){
		_lis[i].onmouseover = function(){
			this.className += " hover";
		}
		_lis[i].onmouseout = function(){
			this.className = this.className.replace("hover","");
		}
	}
	var _divs = _navRoot.getElementsByTagName('div');
	for(j=0;j<_divs.length;j++){
		//_divs[j].style.width = _divs[j].parentNode.offsetWidth + 'px';
		_divs[j].style.width = '200px';
	}
}

if (window.addEventListener)
	window.addEventListener("load", initPage, false);
else if (window.attachEvent)
	window.attachEvent("onload", initPage);