  google.load("feeds", "1");
  function OnLoad() {
    var feedControl = new google.feeds.FeedControl();
	feedControl.addFeed("http://www.mediatoday.co.kr/rss/allArticle.xml", "전체기사");
	feedControl.addFeed("http://www.mediatoday.co.kr/rss/clickTop.xml", "인기기사");
	feedControl.addFeed("http://www.mediatoday.co.kr/rss/S1N1.xml", "미디어");
	feedControl.addFeed("http://www.mediatoday.co.kr/rss/S1N4.xml", "정치");
	feedControl.addFeed("http://www.mediatoday.co.kr/rss/S1N5.xml", "경제");
	feedControl.addFeed("http://www.mediatoday.co.kr/rss/S1N6.xml", "사회");
	feedControl.addFeed("http://www.mediatoday.co.kr/rss/S1N7.xml", "문화");
	feedControl.addFeed("http://www.mediatoday.co.kr/rss/S1N23.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);
