$(document).ready(function() {
    $('div.person img')
        .click(function() {
            $('#offer_to_email')[0].value = $(this).parent().attr('id');
            $('#offer_to_email_span')[0].innerHTML = $(this).parent().attr('id');
        })
        .mouseover(function() {
            $(this).css('cursor', 'pointer');
        });
});
