    function LoadDynamicFeedControl() {
      var feeds = [
	{title: 'PGA.com :: Latest Golf Headlines',
	 url: 'http://www.pga.com/rss/latest.rss'
	}];
      var options = {
        stacked : false,
        horizontal : false,
        title : ""
      }

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