$(document).ready(function() {
	$("#nav li").bind("mouseenter",function(){
		this.className += "_over over";
		$(this).addClass("sfhover");
	}).bind("mouseleave",function(){
		this.className = this.className.replace("_over over", "");
		$(this).removeClass("sfhover");
	});
});
