    function LoadDynamicFeedControl() {
      var feeds = [
	{title: 'From GroundSupportWorldwide.com',
	 url: 'http://feeds2.feedburner.com/GroundSupportWorldwideRSS/News'
	},
	{title: 'From AMTonline.com',
	 url: 'http://feeds2.feedburner.com/AmtonlineRSS/TopNews'
	},
	{title: 'From AirportBusiness.com',
	 url: 'http://feeds2.feedburner.com/AirportBusinessRSS/AirportNews'
	}];
      var options = {
        stacked : true,
        horizontal : false,
        title : "Top News"
      }

      new GFdynamicFeedControl(feeds, 'feed-control', options);

    }
    // Load the feeds API and set the onload callback.
    google.load('feeds', '1');
    google.setOnLoadCallback(LoadDynamicFeedControl);
