﻿      google.load("feeds", "1");

      function initialize() {
        var feedControl = new google.feeds.FeedControl();
        feedControl.addFeed("http://blogrss.shinobi.jp/rss/ninja/45style", "45style book Get real");
        feedControl.addFeed("http://d.hatena.ne.jp/nogu40/rss", "365日映画を吸う");
        feedControl.addFeed("http://twitter.com/statuses/user_timeline/59683821.rss", "hiro on Twitter");
        feedControl.addFeed("http://dream.rgr.jp/feed", "Reading Diary, Maybe");
        feedControl.addFeed("http://sacochan.tea-nifty.com/blog/index.rdf", "Saco Time");
        feedControl.addFeed("http://sundance.txt-nifty.com/blog/index.rdf", "Sorry, Wrong Access");
        feedControl.addFeed("http://cinema1987.org/diary/index.rdf", "映画とネットのDIARY");
        feedControl.addFeed("http://www.consadole.net/chiha/rss2_0/feed.xml", "九州サポのひとりごと");
        feedControl.addFeed("http://harupyland.exblog.jp/index.xml", "魔女の気持ち");
        feedControl.setNumEntries(1);
        feedControl.setLinkTarget(google.feeds.LINK_TARGET_BLANK);
        feedControl.draw(
         document.getElementById("feedControl"),
         {drawMode : google.feeds.FeedControl.DRAW_MODE_LINEAR});
        }
      google.setOnLoadCallback(initialize);
      
