/**
 * Flowplayer configuration for videos with and without controls.
 * Do not translate the buttons - <co>.
 *
 * SKINS
 * fpHeader
 * - Animation without controls.
 * fpContent
 * - Content movies from CMS elements.
 *
 * API PROPERTIES
 * autoHide
 * - always, never
 * gradients
 * - none, medium, low, high, [0.1, 0.2, 0.3]
 * skins
 * - modern, default
 *
 * @date     2012-02-16, 2011-12-20
 * @since    2010-07-14
 * @author   Alldesign, http://alldesign.de/
 * @version  1.3.1
 */
var flowPlayerConfig = {
    defaults                        : {
        autoPlay                    : true,
        autoBuffering               : true,
        scaling                     : 'fit',
        wmode                       : 'opaque' // Does not work here?
    },
    skins                           : {
        fpHeader                    : {
            name                    : 'controls',
            url                     : 'tl_files/flowplayer/flowplayer.controls-3.2.5.swf',
            opacity                 : 0,
            zIndex                  : 1,
            display                 : 'none',
            width                   : '0',
            height                  : 0,
            all                     : false,
            builtIn                 : false,
            playlist                : false,
            fullscreen              : false,
            slowForward             : false,
            slowBackward            : false,
            fastForward             : false,
            fastBackward            : false,
            stop                    : false,
            play                    : false,
            scrubber                : false,
            time                    : false,
            mute                    : false,
            volume                  : false,
            tooltips                : {
                buttons             : false,
                scrubber            : false,
                volume              : false
            },
            autoHide                : 'always'
        },
        fpContent                   : {
            name                    : 'controls',
            url                     : 'tl_files/flowplayer/flowplayer.controls-3.2.5.swf',
            opacity                 : 1,
            zIndex                  : 1,
            display                 : 'block',
            width                   : '100%',
            height                  : 24,
            left                    : 0,
            bottom                  : 0,
            border                  : 0,
            borderRadius            : 0,
            borderWidth             : 0,
            backgroundColor         : '#000000', // rgba(0, 0, 0, 0.75)
            backgroundGradient      : 'none',
            background              : '#000000',
            all                     : false,
            builtIn                 : false,
            playlist                : false,
            fullscreen              : false,
            slowForward             : false,
            slowBackward            : false,
            fastForward             : false,
            fastBackward            : false,
            stop                    : false,
            play                    : true,
            scrubber                : true,
            time                    : true,
            mute                    : true,
            volume                  : true,
            buttonColor             : '#FFFFFF',
            buttonOverColor         : '#FFFFFF',
            sliderColor             : '#000000',
            sliderBorder            : 'none',
            sliderGradient          : 'none',
            progressColor           : '#B1B1B1',
            progressGradient        : 'none',
            scrubberHeightRatio     : 0.6,
            scrubberBarHeightRatio  : 0.4,
            bufferColor             : '#A3A3A3',
            bufferGradient          : 'none',
            timeFontSize            : 11,
            timeSeparator           : ' ',
            timeBorderRadius        : 0,
            timeBorder              : '0px solid #000',
            timeColor               : '#FFFFFF',
            timeBgColor             : '#000000',
            timeBgHeightRatio       : 0.7,
            durationColor           : '#B1B1B1',
            volumeColor             : '#B1B1B1',
            volumeBorder            : 'none',
            volumeSliderColor       : '#FFFFFF',
            volumeSliderGradient    : 'none',
            volumeSliderHeightRatio : 0.6,
            volumeBarHeightRatio    : 0.4,
            tooltipColor            : '#000000',
            tooltipTextColor        : '#FFFFFF',
            tooltips                : {
                buttons             : true,
                scrubber            : true,
                volume              : true,
                play                : 'Start',
                pause               : 'Pause',
                mute                : 'Mute',
                unmute              : 'Unmute',
                fullscreen          : 'Fullscreen'
            },
            autoHide                : 'never',
            autoHide                : {
                enabled             : false,
                hideStyle           : 'fade',
                hideDelay           : 500,
                mouseOutDelay       : 500,
                hideDuration        : 400,
                fullscreenOnly      : false
            }
        }
    }
};

