// Video Player configuration
var playerConfig = {
    baseURL: base_url+'media/',
    autoPlay: false,
    autoRewind: true,
    loop: false,
    initialScale: 'scale',
    useNativeFullScreen: true,
    useHwScaling: false,
    startingBufferLength: '10',
    showMenu: false,
    showPlayListButtons: false,
    showVolumeSlider: false,
    controlsOverVideo: 'ease',
    controlBarBackgroundColor: -1,
    controlBarGloss: 'none',
    playList: [
        { url: 'splash_image.jpg', overlayId: 'play' },
        { url: 'fescute_spot02_web.f4v' }
    ]
}

$(document).ready(function() {
    // Load the TV Spot Video Player
    flashembed(
        'video_player',
        {
             src:base_url+'swf/FlowPlayerDark.swf',
             width:437,
             height:326,
             bgcolor:'#000000',
             wmode: 'opaque'
         },
         {config: playerConfig}
    );
});