- (void)tableView:(UITableView *)tableView
   didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
   TasksViewController *tasksVC = [[TasksViewController alloc] 
      initWithPerson:[resultsController objectAtIndexPath:indexPath]];
   [self.navigationController pushViewController:tasksVC animated:YES];
   [tasksVC release];
}
