// Controls the display of RSS Feeds; see http://code.google.com/apis/ajaxfeeds/documentation/
	google.load("feeds", "1");
	
	function initialize() {
		var feedControl = new google.feeds.FeedControl();
		feedControl.addFeed("http://labs.brettrospective.com/feed/", "");
		feedControl.setNumEntries(2);
		feedControl.draw(document.getElementById("BrettroLabsControl"));
	}
	google.setOnLoadCallback(initialize);