var READ_FULL_ARTICLE = 'Read full article';
var COLLAPSE_ARTICLE = 'Collapse article';

$(document).ready( function() {
	$(function() {
		$('.truncate').truncate({
		max_length: 800,
		more: 		READ_FULL_ARTICLE, 
		less: 		COLLAPSE_ARTICLE
		
		});
	});
} );

/*
$(function(){
	$('.truncate').truncatable({	
		limit: 	800, 
		more: 	'Read full article', 
		less: 	true, 
		hideText: '[hide]' }); 
});
*/

