  google.load("feeds", "1");
  function OnLoad() {
    var feedControl = new google.feeds.FeedControl();
	feedControl.addFeed("http://rss.ohmynews.com/rss/top.xml", "주요기사");  
    feedControl.addFeed("http://rss.ohmynews.com/rss/society.xml", "사회");
	feedControl.addFeed("http://rss.ohmynews.com/rss/culture.xml", "문화");
	feedControl.addFeed("http://rss.ohmynews.com/rss/politics.xml", "정치");
	feedControl.addFeed("http://rss.ohmynews.com/rss/economy.xml", "경제");
    feedControl.addFeed("http://rss.ohmynews.com/rss/international.xml", "민족국제");
	feedControl.addFeed("http://rss.ohmynews.com/rss/sports.xml", "스포츠");
	feedControl.addFeed("http://rss.ohmynews.com/rss/cinema.xml", "영화");
	feedControl.addFeed("http://rss.ohmynews.com/rss/media.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);
