/* Movie information. */
var infoText = {
    /* An array of times in seconds (sorted ascending) where the div under the
     * movie should be filled with some sort of text (links, etc). A time of 0
     * seconds is special and indicates information that should be displayed
     * before the player starts and after the movie has stpped. */
    timeList: ["0"],

    /* An array of strings of HTML. These associate with the times in
     * infoTimesList so that when playback hits the time specified, the
     * associated HTML from this part loads up. */
    text: [
"<p>For Christmas we were given a T-Fal ActiFry, an appliance which cleverly makes crispy french fries with a very small amount of oil.</p>\
\
<p>The very next day, we set out to test it out by crisping up some fries to use in a poutine, and captured it for posterity on video!</p>\
\
<p>Due to the fact that we're lazy, we bought some frozen fries to test it out with. Who has time to peel and slice potatoes when you're busy making a video?</p>"
    ]
};

