// JavaScript Document
 
sfHoverC = function() {
	if (null != document.getElementById("navC")) {
	var sfEls = document.getElementById("navC").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfHoverC";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfHoverC\\b"), "");
		}
	}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHoverC);

