$(function() {

    // Show/Hide Tabbed Content
    var tabContainers = $('.tab-content');
    $('#tabs .nav a').click(function () {

        tabContainers.addClass('hide').filter(this.hash).removeClass('hide');

        $('#tabs .nav a').removeClass('active');
        $(this).addClass('active');

        return false;
    }).filter(':first').click();

});




















