  google.load("feeds", "1");
  function OnLoad() {
    var feedControl = new google.feeds.FeedControl();
	feedControl.addFeed("http://imnews.imbc.com/rss/news/news_00.xml", "전체");
	feedControl.addFeed("http://imnews.imbc.com/rss/news/news_01.xml", "정치");
	feedControl.addFeed("http://imnews.imbc.com/rss/news/news_02.xml", "통일외교");
	feedControl.addFeed("http://imnews.imbc.com/rss/news/news_03.xml", "국제");
	feedControl.addFeed("http://imnews.imbc.com/rss/news/news_04.xml", "경제");
	feedControl.addFeed("http://imnews.imbc.com/rss/news/news_05.xml", "사회");
	feedControl.addFeed("http://imnews.imbc.com/rss/news/news_06.xml", "문화/연예");
	feedControl.addFeed("http://imnews.imbc.com/rss/news/news_07.xml", "스포츠");
    feedControl.addFeed("http://imnews.imbc.com/rss/news/news_08.xml", "건강/과학");
    feedControl.setLinkTarget(google.feeds.LINK_TARGET_BLANK);
    var i = document.list_num.num.options.selectedIndex;
    feedControl.setNumEntries(document.list_num.num.options[i].text);
    feedControl.draw(document.getElementById("feedControl"),
	{drawMode : google.feeds.FeedControl.DRAW_MODE_TABBED});
  }
  google.setOnLoadCallback(OnLoad);
