
function loadFunction() {
	$("#nav li").each(function() {
		this.mouseover = function() {
			this.addClass("sfhover");
		}
		
		this.mouseout = function() {
			this.removeClass("sfhover");
		}
	});
}


if (window.attachEvent) {
	window.attachEvent("onload", loadFunction);
}
