﻿    function LoadDynamicFeedControl()
    {
        var feeds = [
        {
            title: '&nbsp;France',
            url: 'http://p.yimg.com/dj/rss/france.xml'
        }
        //,
        //{
        //    title: '&nbsp;Emploi',
          //  url: 'http://p.yimg.com/dj/rss/emploi.xml'
        //},
        //{
          //  title: '&nbsp;Société',
            //url: 'http://p.yimg.com/dj/rss/societe.xml'
        //},
        //{
          //  title: '&nbsp;Outre-Mer',
            //url: 'http://p.yimg.com/dj/rss/regions.xml'
        //},
        //{
          //  title: '&nbsp;Faits Divers',
            //url: 'http://p.yimg.com/dj/rss/faits-divers.xml'
        //},
        //{
          //  title: '&nbsp;Economie',
            //url: 'http://p.yimg.com/dj/rss/economie.xml'
        //}        
        ];
        var options =
        {
            stacked : true,
            horizontal : false,
            title : "Actualités",
            numResults : 6
        }

        new GFdynamicFeedControl(feeds, 'feed-control', options);
    }
    // Load the feeds API and set the onload callback.
    google.load('feeds', '1');
    google.setOnLoadCallback(LoadDynamicFeedControl);
