jQuery.noConflict();

jQuery(document).ready(function($){

   $('.index .news-story').each(function(){
      var oldtext = $(this).html();
      var newtext = oldtext.replace(/\.\.\..*\]/, "... ");
      $(this).html(newtext);
   });
   
});