// IE Hack hoversfHover = function() {	document.getElementById("menuAbout").onmouseover=function() { this.className+=" sfhover"; this.style.cursor='hand'; }	document.getElementById("menuAbout").onmouseout=function() { this.className=this.className.replace(new RegExp(" sfhover\\b"), ""); }	document.getElementById("menuAbout").onclick=function() { document.location="http://www.sumaato.net/about/"; }	document.getElementById("menuWork").onmouseover=function() { this.className+=" sfhover"; this.style.cursor='hand'; }	document.getElementById("menuWork").onmouseout=function() { this.className=this.className.replace(new RegExp(" sfhover\\b"), ""); }	document.getElementById("menuWork").onclick=function() { document.location="http://www.sumaato.net/work/"; }	document.getElementById("menuLabs").onmouseover=function() { this.className+=" sfhover"; this.style.cursor='hand'; }	document.getElementById("menuLabs").onmouseout=function() { this.className=this.className.replace(new RegExp(" sfhover\\b"), ""); }	document.getElementById("menuLabs").onclick=function() { document.location="http://www.sumaato.net/"; }	document.getElementById("menuContact").onmouseover=function() { this.className+=" sfhover"; this.style.cursor='hand'; }	document.getElementById("menuContact").onmouseout=function() { this.className=this.className.replace(new RegExp(" sfhover\\b"), ""); }	document.getElementById("menuContact").onclick=function() { document.location="http://www.sumaato.net/contact/"; }	document.getElementById("menuBlog").onmouseover=function() { this.className+=" sfhover"; this.style.cursor='hand'; }	document.getElementById("menuBlog").onmouseout=function() { this.className=this.className.replace(new RegExp(" sfhover\\b"), ""); }	document.getElementById("menuBlog").onclick=function() { document.location="http://typolis.net/sumaato/"; }}if (window.attachEvent) window.attachEvent("onload", sfHover);