// JavaScript Document

    function LoadDynamicFeedControl() {
      var feeds = [
	{title: 'Kennedy Global',
	 url: 'http://www.kennedyglobal.com/blog/feed/'
	}];
      var options = {
        stacked : true,
        horizontal : false,
        title : "Recent Posts"
      }

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