/*
$(document).ready(function(){
	$("#nav li").each(function(index){
		$(this).mouseover(function(){
			//e.preventDefault();
			$(this).addClass("sfhover").css("z-index",999);
		});
		$(this).mouseout(function(){
			//e.preventDefault();
			$(this).removeClass("sfhover");
		});
	
	});

});
*/
