    function LoadDynamicFeedControl() {
	var feeds = [
	{title: 'MMA Junkie',
	 url: 'http://feeds.feedburner.com/mmajunkie'
	},
	{title: 'MMA Mania',
	 url: 'http://www.mmamania.com/rss/'
	},
	{title: 'MMA Fanhouse',
	 url: 'http://mma.fanhouse.com/rss.xml'
	},
	{title: 'Bloody Elbow',
	 url: 'http://feeds.feedburner.com/sportsblogs/bloodyelbow?format=xml'
	},
	{title: 'Fight Opinion',
	 url: 'http://feeds.feedburner.com/fightopinion?format=xml'
	},	
	{title: 'MMA Payout',
	 url: 'http://feeds.feedburner.com/Payout'
	},
	{title: 'Cage Potato',
	 url: 'http://www.cagepotato.com/feed/'
	},
	{title: 'Fightlinker',
	 url: 'http://www.fightlinker.com/?feed=rss2'
	}];
	
	var options = {
		numResults : 3,
		stacked : true	
  	}

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