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