// JavaScript Document

   function LoadDynamicFeedControl() {
      var feeds = [
	{title: 'WiersMaIns',
	 url: 'http://twitter.com/statuses/user_timeline/299852663.rss'
	}];
      var options = {
        stacked : false,
        horizontal : false,
        title : "",
		numResults : 4

      }

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

