// JavaScript Document /* * http://www.google.com/uds/solutions/dynamicfeed/reference.html */ google.load('feeds', '1'); function OnLoad() { var feeds = [ { title: 'Ryan Seacrest Fan Zone', url: 'http://www.ryanseacrest.co.uk/rss.xml' }, { title: 'Ryan Seacrest Fan Zone', url: 'http://twitter.com/statuses/user_timeline/20848931.rss' }, { title: 'Ryan Seacrest', url: 'http://twitter.com/statuses/user_timeline/16190898.rss' }, { title: 'Negative Natalie', url: 'http://twitter.com/statuses/user_timeline/19549779.rss' }, { title: 'Ellen K', url: 'http://twitter.com/statuses/user_timeline/20171251.rss' }, { title: 'Patty Rodriguez', url: 'http://twitter.com/statuses/user_timeline/19194193.rss' } ]; var options = { horizontal : true, title : ">", numResults : 3, displayTime : 8000, fadeOutTime : 500 }; new GFdynamicFeedControl(feeds, 'feedspace', options); } google.setOnLoadCallback(OnLoad);