/**  How to use the Feed Control to grab, parse and display feeds.
    */
    
    google.load("feeds", "1");
    
    function OnLoad() {
      // Create a feed control
      var feedControl = new google.feeds.FeedControl();


    
      // Add 5 feeds.
      feedControl.addFeed("http://bce.jiscinvolve.org/feed/", "JISC BCE Blog");
      feedControl.addFeed("http://embeddingbce.jiscinvolve.org/feed/", "Embedding BCE");
      feedControl.addFeed("http://collaborativetools4bce.jiscinvolve.org/feed/", "Collaborative Tools");
      feedControl.addFeed("http://bceawareness.jiscinvolve.org/feed/", "Awareness & Education"); 
      feedControl.addFeed("http://bcecpd.jiscinvolve.org/feed/", "Training Package for BCE CPD");       
      feedControl.setNumEntries(1);
      // Draw it.
      feedControl.draw(document.getElementById("rmblogs"));
    }
    
    google.setOnLoadCallback(OnLoad);
