/* 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>Ok, so.. Guitar Hero 3. This is me playing Cliffs of Dover by Eric Johnson on the Medium difficulty level.</p>\
\
<p>It&rsquo;s like my favorite song in the game. This is from a while ago, made because I kept missing notes not entirely due to the timing and I wanted to check and see what the heck the deal was.</p>\
\
<p>Turns out that my dumb fingers sometimes hit two buttons at once, go figure.</p>\
\
<p>Now I play an entirely different way, trying to hold as many buttons down as possible, which makes some parts of this a whole lot easier&hellip;</p>"
    ]
};

