// Google RSS Feed Reader JS
function load(){

    var feeds = [{
        title: '@GoFigure_Math',
        url: 'http://twitter.com/statuses/user_timeline/173970569.rss'
    }];
    

    
   new GFdynamicFeedControl(feeds, 'feedControlHorizontal', {numResults: 5 , horizontal : true, displayTime : 4000, linkTarget: google.feeds.LINK_TARGET_BLANK });
}

google.load("feeds", "1");
google.setOnLoadCallback(load);

