(function($){
  $.fn.checkbox_toggle = function(){
    return this.each(function(){
      var list   = $(this);
      var all    = list.find('.all input');
      var others = list.find('input').not('.all input');
      
      others.click(function(){
        all.each(function(checkbox){
          this.checked = false;
        });
      });
      
      all.click(function() {
        others.each(function(checkbox){
          this.checked = false
        });
      });
    });
  }
})(jQuery);
