tasMenuSpan = function() {
	var sfEls = document.getElementById("tasMenuItems").getElementsByTagName("span");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" tasMenuSpanOver";
		}         
		sfEls[i].onmouseout=function() {  
			this.className=this.className.replace(new RegExp(" tasMenuSpanOver\\b"), "");         
		}     
	} 
} 
if (window.attachEvent) window.attachEvent("onload", tasMenuSpan);

tasMenuDiv = function() {
	var sfEls = document.getElementById("tasMenuItems").getElementsByTagName("div");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" tasMenuDivOver";
		}         
		sfEls[i].onmouseout=function() {  
			this.className=this.className.replace(new RegExp(" tasMenuDivOver\\b"), "");         
		}     
	} 
} 
if (window.attachEvent) window.attachEvent("onload", tasMenuDiv);
