/* 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>Marisue and T.T. started a bet recently as to whose local cupcake store was the better one. An interesting bet since neither one of them had ever actually been in either store.</p>\
\
<p>In this video we sample some cupcakes from the local joint (The Cup and the Cake in the Central City mall) and determine if they're good or not.</p>\
\
<p>I don&rsquo;t know what T.T. thought of her cupcakes, and I don&rsquo;t know what the terms of the bet are. All I know is, I hope T.T. is ready to lose!</p>"
    ]
};

