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