sfHover = function() {
	var sfEls = $('#nav 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'), '');
		}
	}
}
if (window.attachEvent) {
	window.attachEvent('onload', sfHover);
}
/*
sfHover = function() {
var ccsf = {
	timeout: { id: '' },
	mouseout: function (reference) {
		reference.className = reference.className.replace(new RegExp(' sfhover\\b'), '');
	},
	mouseover: function (reference) {
		reference.className += ' sfhover';
	}
}
var sfEls = $('#nav li');
for (var i = 0; i < sfEls.length; i++) {
	sfEls[i].onmouseover = function() {
		clearTimeout(ccsf.timeout.id);
		ccsf.mouseover(this);
		//this.className += ' sfhover';
	}
	sfEls[i].onmouseout = function() {
		clearTimeout(ccsf.timeout.id);
		ccsf.timeout.id = setTimeout(ccsf.mouseout(this), 100);
		//this.className = this.className.replace(new RegExp(' sfhover\\b'), '');
	}
}
}
if (window.attachEvent) {
window.attachEvent('onload', sfHover);
}
*/
