$(function() {
    var path = window.location.pathname;
    $('#sidebar #buttons a').each(function() {
        var href = $(this).attr('href');
        if (path.indexOf(href) >= 0) {
            $(this).addClass('active');
        }
    });
});

