
//NO BULLETS
    google.load("feeds", "1");
    function initialize() {
    var feed = new google.feeds.Feed("http://blog.epa.gov/epplocations/feed/");

//Sets the number of entries to display
    feed.setNumEntries(1);
      feed.load(function(result) {
        if (!result.error) {
          var container = document.getElementById("epplocationsfeed");
          for (var i = 0; i < result.feed.entries.length; i++) {  
			
            var thisLink = document.createElement("a");  //----
            var entry = result.feed.entries[i];
            var attributes = ["title", "link"];    //----
            thisLink.href = entry[attributes[1]];    //----
            thisLink.appendChild(document.createTextNode(entry[attributes[0]]));  //----

			var firstThing = document.createElement("p");  //----based on PN's code
			firstThing.appendChild(document.createTextNode("Read the blog: "));
			firstThing.appendChild(thisLink);
			
            var div = document.createElement("div");
            div.appendChild(firstThing);   //----
            container.appendChild(div);
          }
        }
      });
    }
  google.setOnLoadCallback(initialize);



