var Collapse = {};
Collapse.init = function(){
    jQuery('div.collapsible').each(function(){
        var it = this;
        jQuery('.collapsible-link', this).click(
            function(){
                jQuery('.collapsible-content', it).slideToggle();
                return false;
            }
        );
        jQuery('.collapsible-content', this).hide();
    });
}

jQuery(document).ready(Collapse.init);