function changeBios(name) {
  $("#manu").hide();
  $("#elaine").hide();
  $("#bruce").hide();
  $("#manu_rotator_link").css('background-image','url(/wp-content/themes/boompharma-v2/images/rotator/rotator_manu_off.png)')
  $("#elaine_rotator_link").css('background-image','url(/wp-content/themes/boompharma-v2/images/rotator/rotator_elaine_off.png)')
  $("#bruce_rotator_link").css('background-image','url(/wp-content/themes/boompharma-v2/images/rotator/rotator_bruce_off.png)')
  $("#manu_rotator_link").css('color','#585151');
    $("#elaine_rotator_link").css('color','#585151');
  $("#bruce_rotator_link").css('color','#585151');
  $("#" + name + "_rotator_link").css('background-image','url(/wp-content/themes/boompharma-v2/images/rotator/rotator_' + name + '_on.png');
  $("#" + name + "_rotator_link").css('color','#ED1D24');
  $("#" + name).show();
  if (name == "manu") {
   $("#featured_image").empty();
   $("<img height='187' width='312' title='emmanuel_bueb' alt='Emmanuel Bueb' class='attachment-312x187 wp-post-image' src='http://www.boomerangpharma.com/wp-content/uploads/2011/01/emmanuel_bueb.png'>").appendTo("#featured_image");
  } else 
  if (name == "elaine") {
   $("#featured_image").empty();
   $("<img height='187' width='312' title='Elaine Oussoren' alt='Elaine Oussoren' class='attachment-312x187 wp-post-image' src='/wp-content/uploads/2011/01/elaine_oussoren.png'>").appendTo("#featured_image");
  } else 
  if (name == "bruce") {
   $("#featured_image").empty();
   $("<img height='187' width='312' title='Bruce Jenkins' alt='Bruce Jenkins' class='attachment-312x187 wp-post-image' src='/wp-content/uploads/2011/01/bruce_jenkins.png'>").appendTo("#featured_image");
  }
}
