$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready (a little sooner that page load)
  $('#slidebox').hide();
  
 // slides and toggle the slickbox on click    

  $('#guide').click(function() {
    $('#slidebox').slideToggle(400);
    return false;
  });
});
