// hover for iexplorer
ahhover = function() {
	var sfEls = document.getElementById("menulist").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" ahhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" ahhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", ahhover);


// ---- Stop IE6 From Re-Cashing CSS Background Images 
// ---- May cause mouse event problems in Opera
try 
{
	document.execCommand("BackgroundImageCache", false, true);
}

catch(err) {}
