function collapse()
{
    var f = $$('.post-content');
    for(var i=0; i < f.length; i++) {
        f[i].toggle();
    }
}