/* 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>Come join us on an epic adventure as we witness a dreary New Years day, have a viewing of a sad looking poinsettia, and pretend to be surprised by the contents of a box that has a customs form with the contents stuck on the side.</p>\
\
<p><em>&ldquo;Warm seasons greetings take an unexpected turn in this orgiastic thrill ride for the senses, a definite must-see!&rdquo;</em> &ndash; Gene Shalit&rsquo;s sweet, sweet mustache</p>"
    ]
};

