$(function () {
    var tabs = [];
    var tabContainers = [];
    $('ul.tabs-nav a').each(function () {
        if (this.pathname == window.location.pathname) {
            tabs.push(this);
            tabContainers.push($(this.hash).get(0));
        }
    });
    $(tabs).click(function () {
        $(tabContainers).hide().filter(this.hash).show();
        $(tabs).removeClass('tab-selected');
        $(this).addClass('tab-selected');
        return false;
    }).filter(':first').click();
});
