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

  $('#slick-slidetoggle2').click(function() {
    $('#imagecomment').slideToggle(400);
    return false;
  });
});
