$(document).ready(function(){
  // hide all blocks that have class hide
	$('.hide').hide();
	// toggle link1 with container1
	// using chaining for performance and ease
	// changing html of link
	$('.showhide').toggle(function(){
	  $(this).parent().next().slideDown('slow').removeClass('hide').preventDefault;
	    //$(this).html('more-details - hide');
	  },function(){
	    $(this).parent().next().slideUp('slow').addClass('hide').preventDefault;
	    //$(this).html('more-details');
	})
 });
