

    function LoadDynamicFeedControl() {
      var feeds = [
	{title: 'Milan actu',
	 url: 'http://feeds.feedburner.com/milan-multimedia/giVN'
	}];
      var options = {
        stacked : false,
        horizontal : false,
		numResults : 4,
		displayTime : 5000,
		title : 'ACTU<br>Milan Presse',
		fadeOutTime : 500
      }

      new GFdynamicFeedControl(feeds, 'feedControl', options);
    }
    // Load the feeds API and set the onload callback.
    google.load('feeds', '1');
    google.setOnLoadCallback(LoadDynamicFeedControl);
