
var currentFile = window.location.pathname.replace("/","");
$(function() {
    $("div.footerText a").each(function(){
        if($(this).attr("href") == currentFile )
            $(this).addClass("selected");
    })
});



