if($){
  $(function(){
      $('#id_cat_all').click(function(ev){
                               if(this.checked) {
                                 $('.fieldset_interests :checkedbox')
                                   .not('#id_cat_other')
                                   .not('#id_cat_all')
                                   .attr('checked', 'checked');
                               }
                          });
    });
}