function renderStaff(staff_id) {
  AjaxRequest("CoMeT_function=run_module&module=ModStaff&function=render_staff&action=render_staff_ajax&staff_id=" + staff_id, '#staff_item', renderStaffResponse);

  jQuery('#staff').children('div').removeClass('current');
  if (jQuery('#staff_' + staff_id)) {
    jQuery('#staff_' + staff_id).addClass('current');
  }
}

function renderStaffResponse(html) {
  jQuery('#staff_item').html(html);
  Cufon.refresh('h1');
}