/* 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>So we got this here food saver, what for vacuum sealing your food into neat little baggies to make it last forever (or at least, that&rsquo;s what the people would have you believe.</p>\
\
<p>So, we had to take that sucker out for a maiden voyage, to see how it worked&hellip;</p>"
    ]
};

