$(function() {
    var path = location.pathname.substring(1);
    if (path) {
        $('.navigation a[@href$="' + path + '"]').attr('class', 'selected');
    }
});
