/** 
 * Example external configuration file.  
 * You can freely categorize these nodes 
 */  
var conf = { 
     
    // default clip configuration 
    defaults: { 
         
        autoPlay: true, 
        autoBuffering: true, // autobuffering means that the first frame can be displayed
        bufferLength: 10,
        scaling: 'orig',
        //baseUrl: '', 
     
        // functions are also supported 
        onBegin: function() { 
             
            // make controlbar visible in 3000 seconds 
            this.getControls().fadeIn(3000); 
        } 
         
    }, 
     
    // my skins 
    skins: {         
        kuhnkesmall:  { 
			height:16,
            opacity: 0.9, 
            time: false,
            backgroundColor: '#d7d8dc',
            backgroundGradient: 'medium',
            sliderColor : '#a4abb0',
            sliderGradient : 'medium',
            borderRadius: '1',
            buttonColor: '#a4abb0', 
            buttonOverColor : '#62696f',
            bufferColor: '#000000',
            bufferGradient: 'medium',
            timeBgColor: '#cddbe8',
            timeColor: '#62696f',
            durationColor: '#000000',
            progressColor: '#62696f', 
            progressGradient: 'medium',
            fullscreen: false,
            autoHide: 'never',
            hideDelay: 3000,
            play: {opacity: 0.2},
            metaData: true,
            tooltipColor : '#ffffff',
            tooltipTextColor : '#000000',
            scrubberHeightRatio : 0.7,
            scrubberBarHeightRatio : 0.4,
            volumeSliderHeightRatio : 0.7,
            volumeBarHeightRatio : 0.4,
            timeBgHeightRatio : 0.6
        },
         
        kuhnkelarge:  { 
			height:21,
            opacity: 0.9, 
            time: true,
            backgroundColor: '#d7d8dc',
            backgroundGradient: 'medium',
            sliderColor : '#a4abb0',
            sliderGradient : 'medium',
            borderRadius: '1',
            buttonColor: '#a4abb0', 
            buttonOverColor : '#62696f',
            bufferColor: '#000000',
            bufferGradient: 'medium',
            timeBgColor: '#cddbe8',
            timeColor: '#62696f',
            durationColor: '#000000',
            progressColor: '#62696f', 
            progressGradient: 'medium',
            fullscreen: false,
            autoHide: 'never',
            hideDelay: 3000,
            play: {opacity: 0.2},
            metaData: true,
            tooltipColor : '#ffffff',
            tooltipTextColor : '#000000',
            scrubberHeightRatio : 0.6,
            scrubberBarHeightRatio : 0.5,
            volumeSliderHeightRatio : 0.6,
            volumeBarHeightRatio : 0.5,
            timeBgHeightRatio : 0.7
        } 
 
    } 
     
}
