function initPage()
{
	var navRoot = document.getElementById("navigation");
	var lis = document.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(new RegExp("hover"),"");
		}
	}
	var _featureCategoryFooter=document.getElementsByTagName('div');
	for(i=0;i<_featureCategoryFooter.length;i++)
	{
		if(_featureCategoryFooter[i].className.indexOf('featureCategoryFooter')!=-1)
		_featureCategoryFooter[i].onmouseover = function()
		{
			this.className += " hover";			
		}
		_featureCategoryFooter[i].onmouseout = function()
		{
			this.className = this.className.replace(new RegExp("hover"),"");
		}
	}
	//avr _li=document.getElementsByTagName('li')
}

if (window.addEventListener)
	window.addEventListener("load", initPage, false);
else if (window.attachEvent)
	window.attachEvent("onload", initPage);