g_sURLBase = '/';
function mudarTelefone( qual, numero )
{
    $.ajax( {
        cache: false,
        url: g_sURLBase + 'telefone',
        type: 'POST',
        dataType: 'json',
        data: { qual: qual, numero: numero },
        success: function( resposta ){
            $( '#' + qual ).effect( 'highlight' );
            alert( 'Telefone ' + numero + ' salvo!' );
        },
        error: function( xhr ){ this.value = this.anterior; }
    } );
}

$( window ).load( function(){
    $( '.telefone' ).keyup( function( evento ){
        if( ( evento.keyCode || evento.which ) == 13 ) mudarTelefone( this.id, this.value );
    } );
    $( '.telefone' ).focus( function(){ this.anterior = this.value; } );
    //$( '.telefone' ).blur( function(){ mudarTelefone( this.id, this.value ); } );
} );
