// 切换队员
function swi_people($sid, $obj) {
  var par = {
    randomizer: Math.random(),
    sid: $sid
  }
  $.post("act.php?get_people", par, function(s) {
    $("#content").html(s.content);
    if(s.photo) {
      $("#photo").attr("src", s.photo);
    }
    // 切换当前标签
    var cur_obj = $($obj).parent();
    $(".teams_menu ul li").each(function(i, n) {
      if($(cur_obj).html() == $(n).html()) {
        $(n).removeClass().addClass("teams_ming");
      } else {
        $(n).removeClass();
      }
    });
  }, "json");
}
