jQuery(document).ready(function($) {
// hides the slickbox as soon as the DOM is ready (a little sooner that page load)
  $('.slickbox').hide();
  
// works with multiple events on a page
    $('a.slick-toggle').click(function() {
      $(this).parent().next('.slickbox').slideToggle();
      return false;
    });
  });

