﻿// JavaScript Document

<!--//--><![CDATA[//><!--


sfHover = function() {
	try{
		var sfEls = document.getElementById("nav").getElementsByTagName("LI");
		for (var i=0; i<sfEls.length; i++) {
			sfEls[i].onmouseover=function() {
				this.className+=" sfhover";
				error(this.className);
			}
			sfEls[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
				
				error(this.className);
			}
		}
	}catch(e){}
}

sfHover2 = function() {
	try{
		var sfEls = document.getElementById("lang").getElementsByTagName("LI");
		for (var i=0; i<sfEls.length; i++) {
			sfEls[i].onmouseover=function() {
				this.className+=" sfhover";
				error(this.className);
			}
			sfEls[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
				
				error(this.className);
			}
		}
	}catch(e){}
}

if (window.attachEvent){
	window.attachEvent("onload", sfHover);
	window.attachEvent("onload", sfHover2);
	
	window.attachEvent("unload", function(){ window.detachEvent("onload", sfHover); });
	window.attachEvent("unload", function(){ window.detachEvent("onload", sfHover2); });
}
//--><!]]>
