

function showMsg(str) {
    alert(str);
}

function ShowInfo() {
    this.ShowTimes = [];
    this.Episodes = [];
    this.News = '';
}

ShowInfo.prototype = {
    addShowTime : function(strShowTime) {
        this.ShowTimes.push(strShowTime);
    },
    addEpisode : function(objEpisode) {
        this.Episodes.push(objEpisode);
    },
    addNews : function(strNews) {
        this.News = strNews;
    }
};

function Episode(strName, strTitle, strAirtime, strPlot) {
    this.Name = strName;
    this.Title = strTitle;
    this.AirTime = strAirtime;
    this.Plot = strPlot;
}

var showInfo = new ShowInfo();

showInfo.addNews('');showInfo.addShowTime('<p>Saturday November 21 at 6:30 AM</p>');showInfo.addShowTime('<p>Sunday November 22 at 6:30 AM</p>');showInfo.addShowTime('<p>Tuesday November 24 at 7:30 AM</p>');showInfo.addShowTime('<p>Saturday November 28 at 6:30 AM</p>');showInfo.addShowTime('<p>Sunday November 29 at 6:30 AM</p>');showInfo.addShowTime('<p>Tuesday December 1 at 7:30 AM</p>');showInfo.addShowTime('<p></p>');var ep = new Episode('Rollbots','The Broken','Saturday November 21 at 6:30 AM','A new maintenance robot built by the Tensai threatens to make life extremely hard for various tribes around town... but when it\'s hijacked by Vertex\'s henchmen things get tricky for Spin and the FCPD too!');
showInfo.addEpisode(ep);


var infoLoaded = true;
