function LoadDynamicFeedControl() {
	var feeds = [ {
		title : 'Yahoo!奇摩',
		url : 'http://tw.news.yahoo.com/rss/showbiz'
	}, {
		title : '經濟日報',
		url : 'http://udn.com/udnrss/endpopular.xml'
	}, {
		title : 'udn',
		url : 'http://udn.com/udnrss/latest.xml'
	}, {
		title : 'PCHome',
		url : 'http://news.pchome.com.tw/rss/hot/'
	}, {
		title : '自由時報',
		url : 'http://www.libertytimes.com.tw/rss/fo.xml'
	}, {
		title : '數位時代',
		url : 'http://www.bnext.com.tw/RssFeedPreferred_Focus'
	} ];
	var options = {
		stacked : false,
		horizontal : true,
		title : "",
		numResults : 60,
	    displayTime : 5000

	}

	new GFdynamicFeedControl(feeds, 'feed-control', options);
}
// Load the feeds API and set the onload callback.
google.load('feeds', '1');
google.setOnLoadCallback(LoadDynamicFeedControl);
