google.load("feeds", "1");
		function initialize3() {
			var feed = new google.feeds.Feed("http://cfpub.epa.gov/surf/rss/rssfeedgen.cfm?page=http://www.epa.gov/owow/tmdl/new.html");
			feed.setNumEntries(2);
			feed.load(function(result) {
				if (!result.error) {
					var list = document.createElement("ul");
					var container = document.getElementById("feed3");

					for (var i = 0; i < result.feed.entries.length; i++) {
						var listItem = document.createElement("li");
						var thisPara = document.createElement("p");
						var thisLink = document.createElement("a");
						var entry = result.feed.entries[i];
						var attributes = ["title", "link", "contentSnippet"];
						thisLink.href = entry[attributes[1]];
						thisLink.appendChild(document.createTextNode(entry[attributes[0]])); // create and append the title to the link
						thisPara.appendChild(document.createTextNode(entry[attributes[2]])); // create and append the content snippet
						listItem.appendChild(thisPara); // append the content snippet
						listItem.insertBefore(thisLink,thisPara); // append the link before the content snippet
						list.appendChild(listItem);
					}
					container.appendChild(list);
				}
			}); 
		}
	
		google.setOnLoadCallback(initialize3);