$(document).ready(function(){
  $('.people .person').each(function(){
    var person = $(this);
    person.click(function(){
      window.location.href = person.attr('href');
    });
  });
});