// rewrite by Steven Ferrino
$(document).ready(function() {
    $("#nav LI").each(function() {
        $(this).bind("mouseover", function() {
            $(this).addClass("sfhover");
        });
        $(this).bind("mouseout", function() {
            $(this).removeClass("sfhover");
        });
    });
})