sfHover = function() {

	var sfEls = document.getElementById("suckerfishmenu").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() { 
			this.className+=" sfhover";   
			$("this li:first a").css('text-decoration', 'underline');    
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			$("this li:first a").css('text-decoration', 'none');    
		}
	}

	// var menuul = $("li.expanded li:first a").css('text-decoration', 'underline');       
	// alert(menuul.html());  
}
if (window.attachEvent) window.attachEvent("onload", sfHover); 
if (window.addEventListener) window.addEventListener("load", sfHover, false); 

sfHover = function() {
	var sfEls = document.getElementById("suckerfishmenu2").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() { 
			this.className+=" sfhover";   
			$("this li:first a").css('text-decoration', 'underline');    
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			$("this li:first a").css('text-decoration', 'none');    
		}
	}

	// var menuul = $("li.expanded li:first a").css('text-decoration', 'underline');       
	// alert(menuul.html());  
}
if (window.attachEvent) window.attachEvent("onload", sfHover); 
if (window.addEventListener) window.addEventListener("load", sfHover, false); 
