ahrcMenuSpan = function() {
	var sfEls = document.getElementById("ahrcMenuItems").getElementsByTagName("span");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" ahrcMenuSpanOver";
		}         
		sfEls[i].onmouseout=function() {  
			this.className=this.className.replace(new RegExp(" ahrcMenuSpanOver\\b"), "");         
		}     
	} 
} 
if (window.attachEvent) window.attachEvent("onload", ahrcMenuSpan);

ahrcMenuDiv = function() {
	var sfEls = document.getElementById("ahrcMenuItems").getElementsByTagName("div");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" ahrcMenuDivOver";
		}         
		sfEls[i].onmouseout=function() {  
			this.className=this.className.replace(new RegExp(" ahrcMenuDivOver\\b"), "");         
		}     
	} 
} 
if (window.attachEvent) window.attachEvent("onload", ahrcMenuDiv);
