
jQuery(document).ready(function(){

	jQuery("div.blog-post > div.post-body").each(function(){

	  var ptxt = jQuery(" > .blogContent", this).text();

	  if( ptxt.length > 550 )
	  {
		var newptxt = ptxt.substring(0, 550);
		jQuery(" > .blogContent", this).text(newptxt);
		jQuery(" > .readmore", this).show();


		jQuery(".readmore > a",this).attr("href", jQuery(this).parent().find(".post-title > a").attr("href") );
	  }


	});

});


