jQuery(function()

{

    jQuery('.p7TPcontent div[class^=tab]').hide();

    jQuery('.p7TPcontent .tab1').show();



    jQuery('.p7TP_tabs div[class^=tab]').click(function(event)

    {

        jQuery('.down').toggleClass('down');

        jQuery('.p7TPcontent div[class^=tab]').hide();

        jQuery('.p7TPcontent .' + jQuery(this).attr('class')).show();

        jQuery(this).toggleClass('down');
        
        

    });

    

    var anchor = jQuery('#tab').val();

    var tab = jQuery('.p7TP_tabs .tab' + anchor);

    

    if (tab.size())

    {

        tab.click();

    }

    else

    {

        jQuery('.p7TP_tabs .tab1').click();

    }

});