$(document).ready(function() {

   // hides the slickbox as soon as the DOM is ready
   // (a little sooner than page load)
   $('.readmore1').hide();
   $('.readmore2').hide();
   $('.readmore3').hide();
   $('.readmore4').hide();
   $('.readmore5').hide();
   $('.readmore6').hide();
   $('.readmore7').hide();
   $('a.toggle').click(function() {
   $('.'+this.id).slideToggle(400);
   return false;
   });

});