// JavaScript Document

function load() {
  var feed ="http://twitter.com/statuses/user_timeline/21321102.rss";
	  
	var options = {
		numResults : 5
	}
	new GFdynamicFeedControl(feed, "feedControl", options);

}

google.load("feeds", "1");
google.setOnLoadCallback(load);