    function LoadDynamicFeedControl() {
      var feeds = [
	{title: '... at Dr. Mao&lsquo;s Secrets:',
	 url: 'http://health.yahoo.com/experts/drmao/feed/rss2/'
	}];
      var options = {
        stacked : false,
        horizontal : false,
        title : "",
		numResults: 6
      }

      new GFdynamicFeedControl(feeds, 'feed-control', options);
    }
    // Load the feeds API and set the onload callback.
    google.load('feeds', '1');
    google.setOnLoadCallback(LoadDynamicFeedControl);
