    google.load("feeds", "1");
    // Our callback function, for when a feed is loaded.
    function feedLoaded2(result) {
      if (!result.error) {
        // Grab the container we will put the results into
        var container = document.getElementById("blog2");
        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 < 1; i++) {
          var entry = result.feed.entries[i];
          var div = document.createElement("div");
          var anchorTag = document.createElement('a');
          anchorTag.setAttribute("target", "_blank");
          var anchorTag2 = document.createElement('p');
          anchorTag.appendChild(document.createTextNode(entry.title));
          anchorTag2.appendChild(document.createTextNode(entry.contentSnippet));
          anchorTag.href = (entry.link);
           div.appendChild(anchorTag);
           div.appendChild(anchorTag2);
          container.appendChild(div);
        }
      }
    }

    function OnLoad() {
      // Create a feed instance that will grab Digg's feed.
      var feed = new google.feeds.Feed("http://www.internetbusinessmarketing.co.uk/blog/feed/");

      // Calling load sends the request off.  It requires a callback function.
      feed.load(feedLoaded2);
    }
    google.setOnLoadCallback(OnLoad);
