function ieHover()
{
	var nav = document.getElementById("must-have-lnks");
	if (nav)
	{
		var nodes = nav.getElementsByTagName("li");
		for (var i=0; i<nodes.length; i++)
		{
			nodes[i].onmouseover = function() 
			{
				this.className += " hover";
			}
			nodes[i].onmouseout = function()
			{
				this.className = this.className.replace(" hover", "");
			}
		}
	}
}

if (window.attachEvent && !window.opera){
	window.attachEvent("onload", ieHover);
}




/*function initPage()
{
	var _a = document.getElementsByTagName("a");
		for (var i=0; i<_a.length; i++)
		{
			if(_a[i].className.indexOf("must-have-lnk") != 1) 
			{
				_a[i].onmouseover = function () 
				{
					this.parentNode.className = this.parentNode.className + " over";
				}
				_a[i].onmouseout = function () 
				{
					this.parentNode.className = this.parentNode.className.replace(" over","");
				}
			}
		}
		
}
if (window.addEventListener)
	window.addEventListener("load", initPage, false);
else if (window.attachEvent)
	window.attachEvent("onload", initPage);
*/