    jQuery(".ArtistList a").each(function(){
        var href = this.getAttribute('href',2);
        var location = new String( document.location );
        location = location.substr(location.length - href.length);
        if ( location.toLowerCase() == href.toLowerCase()) {jQuery(this).addClass("activeArtist");}
    });

