﻿    function LoadDynamicFeedControl()
    {
        var feeds = [
        {
            title: '&nbsp;In Primo Piano',
            url: 'http://d.yimg.com/eq/rss/top-story.xml'
        }
        //,
        //{
          //  title: '&nbsp;Politica',
            //url: 'http://p.yimg.com/er/rss/politica.xml'
        //},
        //{
          //  title: '&nbsp;Tecnologia',
            //url: 'http://p.yimg.com/er/rss/tecnologia.xml'
        //}
        ];
        var options =
        {
            stacked : true,
            horizontal : false,
            title : "Ultime Notizie",
            numResults : 6
        }

        new GFdynamicFeedControl(feeds, 'feed-control', options);
    }
    // Load the feeds API and set the onload callback.
    google.load('feeds', '1');
    google.setOnLoadCallback(LoadDynamicFeedControl);
