    google.load('feeds', '1');
    
    function OnLoad() {
      var feeds = [
        {
          title: 'Alexandria Louisiana News',
          url: 'http://news.google.com/news?pz=1&ned=us&hl=en&q=Alexandria LA&output=rss'
        },
        {
          title: 'Louisiana News',
          url: 'http://news.google.com/news?pz=1&ned=us&hl=en&q=louisiana&output=rss'
        },
        {
          title: 'US News',
          url: 'http://news.google.com/news?pz=1&ned=us&hl=en&q=us+news&as_qdr=h&as_drrb=q&output=rss'
        }
      ];
    
      var options = {
        stacked : true,
        horizontal : false,
        title : "Latest News"
      };
    
      new GFdynamicFeedControl(feeds, 'content', options);
      document.getElementById('content').style.width = "288px";
    }
    
    google.setOnLoadCallback(OnLoad);