    google.load("feeds", "1");
    // Our callback function, for when a feed is loaded.
    function feedLoaded(result) {
      if (!result.error) {
        // Grab the container we will put the results into
        var container = document.getElementById("blog");
        container.innerHTML = '';
        // Loop through the feeds, putting the titles onto the page.
        // Check out the result object for a list of properties returned in each entry.
        // http://code.google.com/apis/ajaxfeeds/documentation/reference.html#JSON
        for (var i = 0; i < 2; i++) {
          var entry = result.feed.entries[i];
          var div = document.createElement("div");
          div.className = "NEWS";
          var anchorTag = document.createElement('a');
          //anchorTag.setAttribute("target", "_blank");
          var anchorTag2 = document.createElement('p');
          var anchorTag3 = document.createElement('p');
          
          var entrydate=new Date(entry.publishedDate); //get date of entry
          var entrydatestr=' '+entrydate.getDate()+"/"+(entrydate.getMonth()+1)+"/"+entrydate.getFullYear();
          
          
          anchorTag.innerHTML = entry.title;
          anchorTag2.innerHTML = entrydatestr;
          anchorTag2.appendChild(document.createTextNode('  '));
          anchorTag2.innerHTML += entry.author;
          anchorTag3.innerHTML = entry.contentSnippet;
          anchorTag.href = (entry.link);
           div.appendChild(anchorTag);
           div.appendChild(anchorTag2);
           div.appendChild(anchorTag3);
          container.appendChild(div);
        }
      }
    }

    function OnLoad() {
      // Create a feed instance that will grab Digg's feed.
      var feed = new google.feeds.Feed("http://www.berkeleyclinic.com/blog/feed/");

      // Calling load sends the request off.  It requires a callback function.
      feed.load(feedLoaded);
    }
    google.setOnLoadCallback(OnLoad);
