/*
*<!--
*You are free to copy and use this sample in accordance with the terms of the
*Apache license (http://www.apache.org/licenses/LICENSE-2.0.html)
*-->
*/

/*
    *  How to use the Dynamic Feed Control, which has pretty UI already made for you!
    *  Don't forget to check out the options:
    *  http://www.google.com/uds/solutions/dynamicfeed/reference.html
    */
    
    google.load('feeds', '1');
    
    function OnLoad() {
      var feeds = [
        {
          title: 'リスト',
          url: 'http://feedblog.ameba.jp/rss/ameblo/t-machiasobi/rss20.xml'
        }
      ];
    
      var options = {
        stacked : true,
        horizontal : false,
    numResults : 3,
	title : "マチ★アソビスタッフブログ"
      };
    
      new GFdynamicFeedControl(feeds, 'content', options);
      document.getElementById('content').style.width = "228px";
    }
    
    google.setOnLoadCallback(OnLoad);
