  google.load("feeds", "1");
  function OnLoad() {
    var feedControl = new google.feeds.FeedControl();
	feedControl.addFeed("http://rss.hankooki.com/news/hk_main.xml", "전체기사");
	feedControl.addFeed("http://rss.hankooki.com/news/hk_politics.xml", "정치");  
    feedControl.addFeed("http://rss.hankooki.com/news/hk_economy.xml", "경제");
	feedControl.addFeed("http://rss.hankooki.com/news/hk_society.xml", "사회");
	feedControl.addFeed("http://rss.hankooki.com/news/hk_culture.xml", "문화");
	feedControl.addFeed("http://rss.hankooki.com/news/hk_life.xml", "라이프");
	feedControl.addFeed("http://rss.hankooki.com/news/hk_world.xml", "국제");
	feedControl.addFeed("http://rss.hankooki.com/news/hk_it_tech.xml", "IT");
	feedControl.addFeed("http://rss.hankooki.com/news/hk_people.xml", "피플");
	feedControl.addFeed("http://rss.hankooki.com/news/hk_sports.xml", "스포츠");
	feedControl.addFeed("http://rss.hankooki.com/news/hk_entv.xml", "연예");
	feedControl.addFeed("http://rss.hankooki.com/news/hk_opinion.xml", "사설/칼럼");
	feedControl.addFeed("http://rss.hankooki.com/news/hk_photoi.xml", "포토");
	feedControl.addFeed("http://rss.hankooki.com/news/hk_tv.xml", "TV");
    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);
