// encoding: utf-8
(function($) {
  var elm = $('div.summary'),
        tabtext =  elm.text();
  if (tabtext.length > 175) {
    thetext = tabtext.substr(0,175) + '... ';
    elm.text( thetext );
  }
  
  $('a').each(function() {
      $(this).attr('target', '_blank');
  })
})(jQuery);
