/* 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>This one was sort of sprung on me by surprise. I was going to takes pictures of the butter making process and then put them up as photos on the <a href=\"http://pictures.nurdz.com\">picture site</a>, but when all was said and done I was too lazy. So I made a movie instead.</p>\
\
<p>That&rsquo;s why the movie is a slide show type thing.</p>"
    ]
};

