// this tells jquery to run the function below once the DOM is ready

  	$(document).ready(function(){
  		$('.presh').hide();
  		$('.pressh').toggle(function(){
  		  $(this).parent().next().slideDown('slow').removeClass('hide').preventDefault;
  		    $(this).html('less');
  		  },function(){
  		    $(this).parent().next().slideUp('slow').addClass('hide').preventDefault;
  		    $(this).html('read more');
  		})
  	 });

