$.elementReady("inner-col1", function() {

/*changes time format on newsfeed atrticles */

   $('p.news-item-date span.pubDate').each(function(){
      var this_text = $(this).text();
      this_text = this_text.substring(4,this_text.length - 9) + " GMT";
      $(this).text(this_text);
   });

/* changes text format for news feed */
$('div.news-item-intro div').each(function(){
   var this_text = $(this).text();
   $(this).html('<p>'+this_text+'</p>');
});


/* newsfeed -  moves ...more label to the end of descritpion */
$('p.right_aligned').each(function(){
  var more = $(this).html();
  $(this).siblings('div').children('p').append(more);
  $(this).remove();
 
});


})