	var sfHover = function() {
		if (!window.external)return;
		var sfEls = document.getElementById('sfMenu').getElementsByTagName('LI');
		for (var i=0;i<sfEls.length;i++) {
			sfEls[i].onmouseover=function() {
				this.className+=' sfhover' /*Mind the case*/;
			}
			sfEls[i].onmouseout=function() {
				this.className=this.className.replace(/\bsfhover\b/, '');
			}
		}
	}
	if(window.attachEvent)window.attachEvent('onload', sfHover);
