$(document).ready( function() {
    $("#mainContent dl dd ul li a").each( function() {
        var url = document.URL.split("#")
        if ( this == url[0] || this + "index.html" == url[0]) {
            $(this).parent().addClass("focus");
        }
    });
});