$(document).ready(function() {

    $('.nombre').click(function(){
        $('.nombre').removeClass('selected');
        $(this).addClass('selected');
        nPerson = $(this).attr("id").split('per');
        $('#datosRight .inner').animate({"marginLeft":"400px"},'fast',function(){
          $(this).html($('#datos'+nPerson[1]).html()).animate({"marginLeft":"0"},'slow');
        });
    });
});  