$(document).ready(function(){
  $("#news_topics02 div.rss_item").css({'display':'none'});
  $("#news_topics02 span.rss_date").each(function(){
    var dateStr = $(this).html();
    dateStr = dateStr.replace('posted on ','');
    dateStr = dateStr.replace(/\d{2}:\d{2}:\d{2}$/,'');
    $(this).html(dateStr);
    $(this).css({
      'display':'block',
      'float':'left',
      'width':'80px',
      'text-align':'left'
    });
  });
  $("#news_topics02 li.rss_item").each(function(){
    $('br',this).remove();
    $('a',this).css({
      'display':'block',
      'width':'380px',
      'text-align':'left',
      'float':'right'
    });
  });
  
});
