jQuery(document).ready(function() {   
   
   // Show hidden div for button "Uitleg STIR"
   jQuery('a#link_stir_uitleg').click(function() {
       jQuery('#stir_uitleg').toggle();
       return false; // don't follow the link
   })

   // Show hidden div for button "2. Controller STIR bestanden"
   jQuery('input#button_email_nedstat').click(function() {
       jQuery('#email_nedstat').toggle();
       return false; // don't submit the form
   })

   // Show hidden div for button "3. Stuur email naar Nedstat"
   jQuery('input#button_check_files').click(function() {
       jQuery('#check_files').toggle();
       return false; // don't submit the form
   })
});