$(function()
{
    $('#tabset a').each(function()
    {
        if (!$(this).hasClass('active'))
        {
            $($(this).attr('href')).hide();
        }
        $(this).click(function()
        {
            if (!$(this).hasClass('active'))
            {
                $('#tabset a').each(function()
                {
                    $(this).removeClass('active');
                    $($(this).attr('href')).hide();
                });
                $(this).addClass('active');
                $($(this).attr('href')).show();
            }
            return false;
        });
    });
});