    function LoadDynamicFeedControl() {
      var feeds = [
	{title: 'Latest Code Updates',
	 url: 'http://code.google.com/feeds/p/pdnsadministrator/svnchanges/basic'
	}];
      var options = {
        stacked : false,
        horizontal : true,
        title : "",
	numResults : 10
      }

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