/* 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>During the Christmas Season &trade; of 2009, TT totally sent a box of presents to Marisue using the United States Postal Service.</p>\
\
<p>On December 30th,the box was finally obtained, ensuring that present goodness would be had for the new year.</p>\
\
<p>Flush with excitement, we rushed the box home, set it on the table, and then sat around and relaxed for a while, ordered some food, ate it, and relaxed still more.</p>\
\
<p>Post-meal, we whipped out the camera and got ready to record the doings that were about to transpire.</p>\
\
<p>Now you get to see the doings!</p>"
    ]
};

