jQuery(document).ready(function($) {

    $('.tabs .tabs-panel').hide();
    $('.tabs ul.tabs-nav li').click(function() {
        if ($(this).hasClass('.active')) {
            return false;
        }
        $(this).addClass('active').siblings().removeClass('active');
        $(this).parents('.tabs').find('.tabs-panel').hide();
        var href = $('a', this)[0].href;
        $(href.match(/#.*/)[0]).show();
        return false;
    }).eq(0).click();
    
});

