

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 May 12 at 12:00 PM</p>');showInfo.addShowTime('<p>Monday May 12 at 5:00 AM</p>');showInfo.addShowTime('<p>Tuesday May 13 at 12:00 PM</p>');showInfo.addShowTime('<p>Tuesday May 13 at 5:00 AM</p>');showInfo.addShowTime('<p>Wednesday May 14 at 12:00 PM</p>');showInfo.addShowTime('<p>Wednesday May 14 at 5:00 AM</p>');showInfo.addShowTime('<p>Thursday May 15 at 12:00 PM</p>');showInfo.addShowTime('<p>Thursday May 15 at 5:00 AM</p>');showInfo.addShowTime('<p>Friday May 16 at 12:00 PM</p>');showInfo.addShowTime('<p>Friday May 16 at 5:00 AM</p>');showInfo.addShowTime('<p>Sunday May 18 at 10:30 AM</p>');showInfo.addShowTime('<p>Monday May 19 at 5:00 AM</p>');showInfo.addShowTime('<p>Tuesday May 20 at 12:00 PM</p>');showInfo.addShowTime('<p>Tuesday May 20 at 5:00 AM</p>');showInfo.addShowTime('<p>Wednesday May 21 at 12:00 PM</p>');showInfo.addShowTime('<p>Wednesday May 21 at 5:00 AM</p>');showInfo.addShowTime('<p>Thursday May 22 at 12:00 PM</p>');showInfo.addShowTime('<p>Thursday May 22 at 5:00 AM</p>');showInfo.addShowTime('<p>Friday May 23 at 12:00 PM</p>');showInfo.addShowTime('<p>Friday May 23 at 5:00 AM</p>');showInfo.addShowTime('<p>Sunday May 25 at 10:30 AM</p>');showInfo.addShowTime('<p></p>');var ep = new Episode('Being Ian','Million Dollar Sandy','Monday May 12 at 5:00 AM','Ian and Ty convince Sandi to try out for the schoolrsquo;s boxing team.');
showInfo.addEpisode(ep);


var infoLoaded = true;