$(document).ready(function() {
  $("a.expandcomment").click(function() {
    if($(this).html() == "more") {
      $(this).parent().find(".truncated").hide();
      $(this).parent().find(".unabridged").show();      
      $(this).html("less");
    } else {
      $(this).parent().find(".truncated").show();
      $(this).parent().find(".unabridged").hide();      
      $(this).html("more");      
    }
    
    return false;
  })
})