    function LoadDynamicFeedControl() {
      var feeds = [
	{title: 'More Updates',
	 url: 'http://www.feetseekers.com/includes/functions/rss.php'
	}];
      var options = {
        stacked : true,
        horizontal : false,
        title : "Feetseekers Updates"
      }

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