$(document).ready(function(){
  	  // hide all blocks that have class toggle
  		$('.toggle').hide();
  		$('.showhide').toggle(function(){
  		  $(this).parent().next().slideDown('slow').removeClass('hide').preventDefault;
  		    $(this).html('Hide');
  		  },function(){
  		    $(this).parent().next().slideUp('slow').addClass('hide').preventDefault;
  		    $(this).html('Read more');
  		})
  	 });
