//////////
// Taken pretty much verbatim from the Google AJAX Feed API Documentation
// For more information on this code, visit the link below:
// http://www.google.com/uds/solutions/dynamicfeed/reference.html
/////////

function load() {	
	// set the feed URL here			
	var feed  = "http://slais.wordpress.com/feed";
	
	// set whatever options you want here
	// watch your commas!
	var options = {
		displayTime : 5000,
		scrollOnFadeOut : false,
		numResults : 6
	}
	new GFdynamicFeedControl(feed, "feedControl", options);
}	

// call the actual feed loader here		
google.load("feeds", "1");
google.setOnLoadCallback(load);
