

$(".partSet").click(function() {
    $(".partSet").removeAttr("checked");
    $(this).attr("checked","checked");
    if ($(".infocusSet").attr("checked"))
    {
      $(".partSet").next(".note").hide();
      $(".partSet[checked]").next(".note").show();
    }
    part=$(this).attr("part_id");
    if (part=="3")
    {
      $(".infocusSetContainer").hide();
      if ($(".infocusSet").attr("checked"))
        $(".infocusSet").click();
    }
    else
    {
      if($(".infocusSetContainer").css("display")=="none")
      {
        $(".infocusSet").attr("checked","checked");
        $(".infocusSet").triggerHandler("click",{});
	$(".partSet[checked]").next(".note").show();
      }
      $(".infocusSetContainer").show();
    }
    $.post("part.php",
      { oper : 'set_part',
        part : part});
  });
  $(".infocusSet").click(function() {
    var infocus=$(this).attr("checked") ? '1' :0;
    $(".partSet").next(".note").hide();
    if (infocus)
      $(".partSet[checked]").next(".note").show();    
    $.post("part.php",
      { oper : 'set_infocus',
        infocus : infocus});
  });

