// 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://www.mcc.gov/pages/ceoblog/feed", "CEO Blog");
		feedControl.addFeed("http://www.mcc.gov/pages/povertyreductionblog/feed", "Poverty Reduction Blog");
		feedControl.setNumEntries(1);
		feedControl.draw(document.getElementById("ceoBlogControl"));
	}
	google.setOnLoadCallback(initialize);