﻿
var conf = {
    defaults: {

        autoPlay: true,
        autoBuffering: false,
        controls: {
            url: 'flowplayer.controls-3.2.0.swf',

            // tooltips configuration 
            tooltips: { buttons: false }, tooltipColor: '#333333', tooltipTextColor: '#ffffff',
        },

        // functions are also supported 
        onBegin: function() { this.getControls().fadeIn(3000); }
    },

    canvas: { backgroundColor: "#FFFFFF" }, // Page Colour of website

    // start skins 
    skins: {
        CBS: {
            buttonColor: '#666666',
            buttonOverColor: '#e91550',

            backgroundColor: '#e8e2cf',
            backgroundGradient: 'none',
            bufferGradient: 'none',
            progressGradient: 'none',
            volumeSliderGradient: 'none',
            sliderGradient: 'none',

            tooltipTextColor: '#ffffff',
            tooltipColor: '#333333',

            autoHide: 'always',
            progressColor: '#e91550',
            bufferColor: '#e91550',

            timeBgColor: '#CCCCCC',

            timeColor: '#e91550',
            durationColor: '#333333',

            volumeSliderColor: '#e91550',

            height: 24,
            opacity: 1, // set to 0 to allow fadeIn function to work. set to 1 if fadeIn function is removed.
            time: true, // show time display
            playlist: false // show forward and back buttons

        },
        tube: {
            url: 'flowplayer.controls-tube-3.1.3.swf',
            volumeSliderGradient: 'none',
            progressGradient: 'none',
            tooltipTextColor: '#D00000',
            borderRadius: '0px',
            sliderGradient: 'none',
            durationColor: '#ffffff',
            buttonColor: '#000000',
            sliderColor: '#C9C9C9',
            tooltipColor: '#C9C9C9',
            progressColor: '#D00000',
            volumeSliderColor: '#D00000',
            bufferColor: '#C78F8E',
            buttonOverColor: '#FF0000',
            backgroundColor: '#929292',
            bufferGradient: 'none',
            timeBgColor: '#262626',
            backgroundGradient: 'high',
            timeColor: '#B1E0FC',
            height: 24,
            playlist: true,
            opacity: 0
        }

} // end skins 

} // End conf


