var staffId = '';

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

function renderStaffResponse(html) {

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

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

function renderStaffFromPath(staff_id) {
  renderStaff(staff_id);
}
