
/**
 * The following is jQuery functionality that will be executed as soon as the
 * DOM is ready (roughly equal to onload).
 */
jQuery(function($) {
  $(".toggleLink").click(function() {
      $(this).next(".hidden").toggle();
    });
});

