jQuery(function () {
    var tabContainers = jQuery('div.tabs > div');
    jQuery('div.tabs ul.tabs a').click(function () {
        tabContainers.fadeOut("fast").filter(this.hash).fadeIn("fast");
        jQuery('div.tabs ul.tabs a').removeClass('tab-selected');
        jQuery(this).addClass('tab-selected');
        return false;
    }).filter(':first').click();
    jQuery('li.to_contract a').click(function () {
        tabContainers.fadeOut("fast").filter(this.hash).fadeIn("fast");
        jQuery('div.tabs ul.tabs a').removeClass('tab-selected');
        jQuery('li#contract_tab a').addClass('tab-selected');
        return false;
    });
});