
// Box 001
$(document).ready(function() {
    $('#toggleButton').click(function() {               // toggleButton
          if ($('#toggleSection').is(":hidden"))        // toggleSection
          {
              $('#toggleSection').slideDown("slow");    // toggleSection
          } else {
              $('#toggleSection').slideUp("slow");      // toggleSection
          }
    });
});

// Box 002
$(document).ready(function() {
    $('#toggleButton2').click(function() {              // toggleButton2
          if ($('#toggleSection2').is(":hidden"))       // toggleSection2
          {
              $('#toggleSection2').slideDown("slow");   // toggleSection2
          } else {
              $('#toggleSection2').slideUp("slow");     // toggleSection2
          }
    });
});

// Box 003
$(document).ready(function() {
    $('#toggleButton3').click(function() {              // toggleButton3
          if ($('#toggleSection3').is(":hidden"))       // toggleSection3
          {
              $('#toggleSection3').slideDown("slow");   // toggleSection3
          } else {
              $('#toggleSection3').slideUp("slow");     // toggleSection3
          }
    });
});
