<!--//--><![CDATA[//><!--

sfHover = function() {

	var sfEls = document.getElementById("div_navbar").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"), "");
		}
	}
}
/* HERE IS THE STATEMENT A THAT RUNS THE ABOVE. FUNCTION. NOTE ONLY IE USES attachEvent; GECKO USES element.addEventListener(). */
if (window.attachEvent) window.attachEvent("onload", sfHover);

/* NOT USED HERE; JUST TO KEEP IT AROUND
function cbDiv(div)
{//1
if (document.all){return div}
else{return "document.getElementById('"+div+"')"}
}//1
*/

//--><!]]>
