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 = window.location.href.split('tab=');
    var tab = jQuery('.p7TP_tabs .tab' + anchor[1]);
    
    if (tab.size())
    {
        tab.click();
    }
    else
    {
        jQuery('.p7TP_tabs .tab1').click();
    }
});