  jQuery.noConflict();
  
  (function($) {
    
    $(document).ready(function() {
      
      $('.clickgoto').click(function() {
        document.location = $(this).attr('clickgoto');
      });
      
      $('.input_checkbox_hoofdcat').change(function() {
        if($(this).attr('checked')) {
          $(this).parent().parent().next().find('.table_subcategorys input[type=checkbox]').each(function() {
            $(this).attr('checked', 'checked');
          });
        } else {
          $(this).parent().parent().next().find('.table_subcategorys input[type=checkbox]').each(function() {
            $(this).removeAttr('checked');
          });
        }
      });
      
      $('.a_naar_boven').click(function() {
        document.location = $(this).attr('href');
        return false;
      });
      
      $('#form_categorys input[type=checkbox]').change(function() {
        $('#form_categorys').submit();
      });
      
    });
    
  }) (jQuery);
