function LoadDynamicFeedControl() {
      var feeds = [
 {title: 'BTA News',
  url: 'http://www.tri247.com/feeds/articles.rss'
 }];
      var options = {
        stacked : true,
        horizontal : true,
        title : "TRI 24/7"
      }

      new GFdynamicFeedControl(feeds, 'feed-control', options);
    }
    // Load the feeds API and set the onload callback.
    google.load('feeds', '1');
    google.setOnLoadCallback(LoadDynamicFeedControl);
