File Catalog---Page with full entry text and associated comments any place:
Code
<script>$(function() {
$("textarea").focus(function(){
$(this).animate({ width:"99%"}, 1000);
}).blur(function(){
$(this).animate({ width:"210px"}, 500);
});
});</script>