// Feed Reader Loader

function LoadDynamicFeedControl() {
      var feeds = [
		{title: 'The Australian - Aviation',
	 url: 'http://feeds.news.com.au/public/rss/2.0/aus_business_aviation_706.xml'
	},
	{title: 'Flight Global - Air Transport',
	 url: 'http://www.flightglobal.com/feed/1b09b18a-618c-4e57-92f9-670917ec3284/flight-ccp/air-transport.xml'
	},
	{title: 'ATC Network',
	 url: 'http://www.atc-network.com/NewsRss.aspx'
	}];
      var options = {
        stacked : true,
        horizontal : false,
        title : "Upcoming events and news"
      }

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