﻿    function LoadDynamicFeedControl()
    {
        var feeds = [
        {
            title: '&nbsp;Top Stories',
            url: 'http://rss.news.yahoo.com/rss/topstories'
        }
        //,
        //{
          //  title: '&nbsp;World',
           // url: 'http://rss.news.yahoo.com/rss/world'
       // },
        //{
          //  title: '&nbsp;Business',
           // url: 'http://rss.news.yahoo.com/rss/business'
        //},
        //{
          //  title: '&nbsp;Technology',
           // url: 'http://rss.news.yahoo.com/rss/tech'
        //},
       // {
         //   title: '&nbsp;Entertainment',
           // url: 'http://rss.news.yahoo.com/rss/entertainment'
        //},
        //{
          //  title: '&nbsp;Odd News',
            //url: 'http://rss.news.yahoo.com/rss/oddlyenough'
        //}        
        ];
        var options =
        {
            stacked : true,
            horizontal : false,
            title : "Headlines",
            numResults : 8
        }

        new GFdynamicFeedControl(feeds, 'feed-control', options);
    }
    // Load the feeds API and set the onload callback.
    google.load('feeds', '1');
    google.setOnLoadCallback(LoadDynamicFeedControl);
