$('a[href$=/collapse]').live('click', function(){
    $(this).attr('href', $(this).attr('href').replace('collapse', 'expand'));
    $(this).text('Expand');
    target = $(this).attr('href').replace('#/', '').replace('/expand', '').replace('/collapse', '');
    $("#"+target).slideUp();