    google.load("feeds", "1");
 
      function OnLoad() {
 
        // FeedControlのインスタンス作成
        var feedControl = new google.feeds.FeedControl();
        //FeedControlに読込ませる、第一引数はURL、第二引数がラベル
        feedControl.addFeed("http://www.roof-meister.com/blog/feed/rss2/", "施工事例（最新のブログ）");
        feedControl.addFeed("http://www.roof-meister.com/blog/category/works/amamori-yane-shindan/hajimeni//feed", "吉沢板金の雨漏り調査");
        feedControl.addFeed("http://www.roof-meister.com/blog/category/policy/feed", "理念");
       
        //feedControlに書き込み
        feedControl.draw(document.getElementById("feedControl"));
      }
      //読込まれたときにOnLoadを実行
      google.setOnLoadCallback(OnLoad);
    //]]>