$(function() {
    if (document.all) {
      $('#nav li').hover(function() { $(this).addClass('sfhover'); },
			 function() { $(this).removeClass('sfhover'); });
    }
    $("#nav li:last-child").addClass('last');	
});
$(window).ajaxError(function(e, x) { if (x.status == 403) window.location.href=window.location.href; });

