// JavaScript Document
 function LoadDynamicFeedControl() {
      var feeds = [
	{title: 'Consumer Insurance Blog',
	 url: 'http://www.insureinfoblog.com/atom.xml'
	}, {title: 'Follow us on Twitter',
	 url: 'http://twitter.com/statuses/user_timeline/75355187.rss'
	}];
      var options = {
        stacked : true,
        horizontal : false,
        title : "",
		numResults : 4

      }

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