$(document).ready(function(){
	$('.topicbody').each(function(){
		$(this).html($(this).text().substr(0,100)+'...');
	});
});

