$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready (a little sooner that page load)
  $('#slickbox').hide();
  
 // shows and hides and toggles the slickbox on click  
  $('.slick-toggle').click(function() {
    $('#slickbox').toggle(500);
    return false;
  });

 // slides down, up, and toggle the slickbox on click    
  $('.slick-slidetoggle').click(function() {
    $('#slickbox').slideToggle(500);
    return false;
  });
});
