Сделал)
И так, весь $MESSAGE$ заменяешь на это:
Code
<?if(len($MESSAGE$)>200)?><div id="small$ID$"><?substr($MESSAGE$,0,200)?></div><div id="big$ID$">$MESSAGE$</div> <a id="small_on_big$ID$" href="javascript://" style="color:red">Развернуть</a><?else?>$MESSAGE$<?endif?>
А внизу вида материалов, подключаем скрипт:
Code
<script type="text/javascript">
$('#big$ID$').hide();
$('#small_on_big$ID$').click(function () {
$('#small$ID$').hide();
$('#big$ID$').fadeIn(1000);
$('#small_on_big$ID$').hide();
});
</script>