// JavaScript Document

   function LoadDynamicFeedControl() {
      var feeds = [
	{title: 'Workers&lsquo; Comp Insider',
	 url: 'http://www.workerscompinsider.com/index.rdf'
	},
	{title: 'NAIC Consumer Alert',
	 url: 'http://www.insurance.naic.org/consumer_alerts.xml'
	},
	{title: 'Insurance Journal',
	 url: 'http://www.insurancejournal.com/rss/news'
	}];
      var options = {
        stacked : true,
        horizontal : false,
        title : "",
		numResults : 6

      }

      new GFdynamicFeedControl(feeds, 'feed-control', options);
    }
    // Load the feeds API and set the onload callback.
    google.load('feeds', '1');
    google.setOnLoadCallback(LoadDynamicFeedControl);
