jQuery(function() {
	
	jQuery(document).ready(function() {
		var content = jQuery("p#about-content").html();

		if(content.length > 220) {
	
			jQuery("p#about-content").html( content.substring(0, 220)+'... <a id="about-read-more-link" href="#">Read More</a>' );
			jQuery("#about-read-more-link").click(function(e){
				e.preventDefault();
				jQuery("p#about-content").html(content);
			});
		}
	});
	
});