waMenuSpan = function() {
	var sfEls = document.getElementById("waMenuItems").getElementsByTagName("span");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" waMenuSpanOver";
		}         
		sfEls[i].onmouseout=function() {  
			this.className=this.className.replace(new RegExp(" waMenuSpanOver\\b"), "");         
		}     
	} 
} 
if (window.attachEvent) window.attachEvent("onload", waMenuSpan);

waMenuDiv = function() {
	var sfEls = document.getElementById("waMenuItems").getElementsByTagName("div");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" waMenuDivOver";
		}         
		sfEls[i].onmouseout=function() {  
			this.className=this.className.replace(new RegExp(" waMenuDivOver\\b"), "");         
		}     
	} 
} 
if (window.attachEvent) window.attachEvent("onload", waMenuDiv);
