$(document).ready(function(){
  $('.truncateable').each(function() {
    if (!$(this).text())
    {
      return;
    }
    $(this).truncate(100, {
      chars: /\s/,
      leave: false,
      trail: [true, "... [ <a href='#' title='Click to show all of this text.'>+</a> ]", "&nbsp;[ <a href='#' title='Click to truncate this text.'>-</a> ]"]
    });
  });
});
