

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('The schedule for this series has changed. Please refer to new SHOW TIMES (tab to the right) for up-to-date programming information.');showInfo.addShowTime('<p>Monday November 23 at 6:00 AM</p>');showInfo.addShowTime('<p>Tuesday November 24 at 6:00 AM</p>');showInfo.addShowTime('<p>Wednesday November 25 at 6:00 AM</p>');showInfo.addShowTime('<p>Thursday November 26 at 6:00 AM</p>');showInfo.addShowTime('<p>Friday November 27 at 6:00 AM</p>');showInfo.addShowTime('<p>Monday November 30 at 6:00 AM</p>');showInfo.addShowTime('<p>Tuesday December 1 at 6:00 AM</p>');showInfo.addShowTime('<p>Wednesday December 2 at 6:00 AM</p>');showInfo.addShowTime('<p>Thursday December 3 at 6:00 AM</p>');showInfo.addShowTime('<p>Friday December 4 at 6:00 AM</p>');showInfo.addShowTime('<p></p>');var ep = new Episode('Being Ian','CYRANO DE MILLE','Monday November 23 at 6:00 AM','KYLE MAKES A DEAL WITH IAN TO HELP HIM IMPRESS A GIRL BY MAKING A FILM ABOUT HER.');
showInfo.addEpisode(ep);


var infoLoaded = true;