//This is the container for all Java scripts

//This script is for timed redirect
redirTime = "10000";
redirURL = "http://www.dallasfsc.org/";
function redirTimer() { self.setTimeout("self.location.href = redirURL;",redirTime); }

//This is the RSS load Script

    function LoadDynamicFeedControl() {
      var feeds = [ {title: 'Dallas Figure Skating Club', url: 'http://www.dallasfsc.org/rss/dfsc.xml' },{title: 'New York Times', url: 'http://topics.nytimes.com/top/reference/timestopics/subjects/f/figure_skating/index.html?rss=1' },{title: 'US Figure Skating Team', url: 'http://figureskating.teamusa.org/news/team_rss' }];
      var options = {
        stacked : true,
        horizontal : false,
        title : "Club and Headline Skating News"
      }

      new GFdynamicFeedControl(feeds, 'feed-control', options);
    }
    // Load the feeds API and set the onload callback.
    google.load('feeds', '1');
    google.setOnLoadCallback(LoadDynamicFeedControl);
