$(document).ready(function(){
    
    $('#account_tabs').tabs();
    
    $('div#faq_borrower, div#faq_investor').hide();
    $('div#faq_investor').show();
    $('a.faq_investor').addClass('cur');
    
    $('a.faq_borrower').click( function(){
        $('div#faq_borrower, div#faq_investor').hide();
        $('div#faq_borrower').show();
        $('a.faq_investor').removeClass('cur');
        $(this).addClass('cur');
        return false
    } );
    
    $('a.faq_investor').click( function(){
        $('div#faq_borrower, div#faq_investor').hide();
        $('div#faq_investor').show();
        $('a.faq_borrower').removeClass('cur');
        $(this).addClass('cur');
        return false;
    } )
    
    $('#branding form input.text').focus(function(){
        $(this).val('');
    });
    
});