$(function() {

  // Microblog JS
  $('.expandText').hide();
  $('.expandLink').live('click',function() {
    if ($(this).text()=='expand') {
      $(this).text('collapse');
      $(this).prev('.expandText').show();
    } else {
      $(this).text('expand');
      $(this).prev('.expandText').hide();
    }
  });

});
