// JavaScript Document

    /*
    *  How to use the Dynamic Feed Control, which has pretty UI already made for you!
    *  Don't forget to check out the options:
    *  http://www.google.com/uds/solutions/dynamicfeed/reference.html
    */
    
    google.load('feeds', '1');
    
    function OnLoad() {
      var feeds = [
	  {
          title: 'NESTA',
          url: 'http://community.icontact.com/p/nestacertified/rss.xml'
        },
        {
          title: 'IHRSA',
          url: 'http://cms.ihrsa.org/ihrsanewsfeed.xml'
        },
      ];
    
      var options = {
        horizontal : true,
        title : "Industry News"
      };
    
      new GFdynamicFeedControl(feeds, 'content', options);
    }
    
    google.setOnLoadCallback(OnLoad);
