  google.load("feeds", "1");
  function OnLoad() {
    var feedControl = new google.feeds.FeedControl();
	feedControl.addFeed("http://rss.joins.com/joins_news_list.xml", "전체기사");
	feedControl.addFeed("http://rss.joins.com/joins_homenews_list.xml", "주요기사");
	feedControl.addFeed("http://rss.joins.com/joins_money_list.xml", "경제");
	feedControl.addFeed("http://rss.joins.com/joins_life_list.xml", "사회");
	feedControl.addFeed("http://rss.joins.com/joins_politics_list.xml", "정치");  
	feedControl.addFeed("http://rss.joins.com/joins_opinion_list.xml", "사설·칼럼");
	feedControl.addFeed("http://rss.joins.com/news/joins_lifenews_total.xml", "라이프");
	feedControl.addFeed("http://rss.joins.com/joins_world_list.xml", "지구촌");
	feedControl.addFeed("http://rss.joins.com/joins_culture_list.xml", "문화");
	feedControl.addFeed("http://rss.joins.com/joins_it_list.xml", "IT과학");
	feedControl.addFeed("http://rss.joins.com/issue/issue_total_list.xml", "핫이슈");
	feedControl.addFeed("http://rss.joins.com/joins_topic_list.xml", "화제");
	feedControl.addFeed("http://rss.joins.com/news/joins_jonly_list.xml", "J-Only");
	feedControl.addFeed("http://rss.joins.com/news/joins_rainbow_list.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);
