$(function() {
    $('#clients_list a').click(function (){
        $('#clients_list a').removeClass('active');
        $(this).addClass('active');

        $('#_tr_client_img').html($(this).parent().find('span:first').html());
        return false;
    }).filter(':first').click();

    $('#list_clients_index a').click(function (){
        $('#list_clients_index a').removeClass('active_logo');
        $(this).addClass('active_logo');

        $('#img_client_index').html($(this).parent().find('span:first').html());
        return false;
    }).filter(':first').click();
});
