    function load() {	
	var feed = [
	{title: 'Vacations',
	 url: 'http://feeds.feedburner.com/worldhum'
	},
	{title: 'Vacation Rentals',
	 url: 'http://blog.rentexpert.com/rentexpert/feed/entries/rss'
	},
	{title: 'Lonely Planet',
	 url: 'http://www.lonelyplanet.tv/MRSS.aspx?collid=10'
	}];
      
      
      var options = {
        numResults : 6,
        linkTarget : google.feeds.LINK_TARGET_BLANK,
        displayTime : 5000,        
        title: 'Vacation & Leisure Travel News',
        fadeOutTime : 1000,
        scrollOnFadeOut : false,
        horizontal : false
       
      }

      new GFdynamicFeedControl(feed, "feedControl", options);

    }
    google.load("feeds", "1");
    google.setOnLoadCallback(load);