$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready (a little sooner that page load)
  $('#hpMore-content').hide();

  
  $('#hpMore-slidetoggle').click(function() {
    $('#hpMore-content').slideToggle(400);
    return false;
  });
  
});
