sfHover = function() {
	var first = document.getElementById("thememenu").getElementsByTagName("LI");
	
	
	for (var i=0; i<first.length; i++) {
		first[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		first[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}

	var sec = document.getElementById("mainmenu2").getElementsByTagName("LI");
	
	
	for (var i=0; i<sec.length; i++) {
		sec[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sec[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
		
}




	
if (window.attachEvent) window.attachEvent("onload", sfHover);


