  google.load("feeds", "1");
  function OnLoad() {
    var feedControl = new google.feeds.FeedControl();
	feedControl.addFeed("http://www.chosun.com/site/data/rss/rss.xml", "전체기사");
	feedControl.addFeed("http://myhome.chosun.com/rss/www_section_rss.xml", "오늘의 주요뉴스");
	feedControl.addFeed("http://www.chosun.com/site/data/rss/economy.xml", "경제");
	feedControl.addFeed("http://www.chosun.com/site/data/rss/politics.xml", "정치");
	feedControl.addFeed("http://www.chosun.com/site/data/rss/national.xml", "사회");  
	feedControl.addFeed("http://www.chosun.com/site/data/rss/international.xml", "국제");
	feedControl.addFeed("http://www.chosun.com/site/data/rss/culture.xml", "문화");
	feedControl.addFeed("http://www.chosun.com/site/data/rss/editorials.xml", "사설ㆍ칼럼");
	feedControl.addFeed("http://www.chosun.com/site/data/rss/video.xml", "동영상");
	feedControl.addFeed("http://photo.chosun.com/site/data/rss/photonews.xml", "포토");
	feedControl.addFeed("http://www.chosun.com/site/data/rss/sports.xml", "스포츠");
	feedControl.addFeed("http://www.chosun.com/site/data/rss/ent.xml", "연예");
	feedControl.addFeed("http://newsplus.chosun.com/hitdata/xml/index/index.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);

  
