// 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://cop.senate.gov/utility/rss/cop-press.xml", "");
		feedControl.setNumEntries(5);
		feedControl.draw(document.getElementById("pressControl"));
	}
	google.setOnLoadCallback(initialize);