<!--//--><![CDATA[//><!--
sfHover = function() {
	var elements = this.document.getElementById("toolbar").getElementsByTagName("li");
	for (var i = 0; i < elements.length; i++) {
		elements[i].onmouseover = function() {
			this.className +=" sfhover";
		}
		elements[i].onmouseout = function() {
			this.className = this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
//--><!]]>

