$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('.more_content').hide();
});
 // shows the element on calling the function
function showhide(target) {
 	$(target).slideToggle(400);
  }
