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

//Submenu
wmtt = null;
wmtt2 = null;
document.onmousemove = updateWMTT;
function updateWMTT(e) {
  /*if (wmtt != null) {
    x = (document.all) ? window.event.x + wmtt.offsetParent.scrollLeft : e.pageX;
    y = (document.all) ? window.event.y + wmtt.offsetParent.scrollTop  : e.pageY;
    wmtt.style.left = (x - 250) + "px";
    wmtt.style.top   = (y + 20) + "px";
  }*/
}
function showWMTT(id,xx) {
  wmtt = document.getElementById(id);
  wmtt.style.display = "block";
  wmtt2 = document.getElementById(xx);
  wmtt2.style.display = "block";
}
function hideWMTT() {
  wmtt.style.display = "none";
  wmtt2.style.display = "none";
}
		 
		

