// JavaScript Document
function load() {
	var feed ="http://senturysnowboards.blogspot.com/feeds/posts/default?alt=rss";
	var options = {
		numResults : 5,
		displayTime : 5000,
		fadeOutTime : 500,
		scrollOnFadeOut : true,
		pauseOnHover : true,
		stacked : true,
		title : '.',
		thumbnailTag: 'content'
	}
	
	new GFdynamicFeedControl(feed, "feedControl", options);
}

google.load("feeds", "1");
google.setOnLoadCallback(load);