﻿$(function() {
    ShowVideoClip();
    $("#videoClip .videoList a").click(function() {
        filename = $(this).attr('filename');
        $f().play('../../video/' + filename);
    });
});
function ShowVideoClip() {
    flowplayer("flowPlayer1", "../../Flash/flowPlayer/flowplayer.swf",
    {
        clip:
        {
            autoPlay: false,
            autoBuffering:true,
            bufferLength:5,
            onBeforeFinish: function() {
                if (this.getStatus().bufferStart == 0) {
                    this.pause();
                    this.seek(0);
                    return false;
                }
            }
        },
        plugins:
        {
            controls:null
        }
    });
}