jQuery(function(){

// The height of the content block when it's not expanded
var adjustheight = 80;
// The "more" link text
var moreText = "MORE [+]";
// The "less" link text
var lessText = "LESS [-]";

// Sets the .more-block div to the specified height and hides any content that overflows
//jQuery(".more-less .more-block").css('height', adjustheight).css('overflow', 'hidden');
firstp = jQuery(".more-less").find("p:first").html();
//lastp  = jQuery(".more-block").find("p:last").html();

jQuery(".more-less").find("p:first").html(firstp+'.."');
//jQuery(".more-block").find("p:last").html(lastp);

// The section added to the bottom of the "more-less" div
//jQuery(".more-less").append('…');
// Set the "More" text
jQuery("a.adjust").text(moreText);

jQuery(".adjust").toggle(function() {
	
		jQuery(".more-less").find("p:first").html(firstp);
		
		
		//jQuery(this).parents().parents().parents().find("p:first").html('"'+firstp+'.."');
		jQuery(this).parents("div:first").find(".more-block").slideToggle("slow"); //added
		jQuery(this).text(lessText);
	}, function() {
		
		jQuery(".more-less").find("p:first").html(firstp+'.."');
		
		jQuery(this).parents("div:first").find(".more-block").slideToggle("slow"); //added
		jQuery(this).text(moreText);
});
});

