
    function LoadDynamicFeedControl() {
      var feeds = [
	{title: 'Latest posts in curly hair styles',
	 url: 'http://www.short-hair-style.com/curly-hair-styles-rss.xml'
	}
	];
      var options = {
        stacked : true,
        horizontal : false,
        title : "",
		numResults : 6,
		displayTime : 5000,
		fadeOutTime : 500
      }
      
      new GFdynamicFeedControl(feeds, 'feed-control', options);
    }
    // Load the feeds API and set the onload callback.
    google.load('feeds', '1');
    google.setOnLoadCallback(LoadDynamicFeedControl);


