/** 
 * Example external configuration file.  
 * You can freely categorize these nodes 
 */  
var conf = {
     
    // default clip configuration 
    defaults: {
         
        /*autoPlay: false,
        autoBuffering: true,
        */
        scaling: "fit",
        baseUrl: 'http://www.zona24.cz/data/video/'
     
        // functions are also supported 
        /*onBegin: function() {
             
            // make controlbar visible in 4000 seconds 
            this.getControls().fadeIn(4000); 
        }*/
         
    }, 
     
    // my skins 
    skins: {
        gray:  {
            backgroundColor: '#000',
            backgroundGradient: 'none',
            // these buttons are visible
            all:false,
            scrubber:true,
            play:true,
            mute:true,
            volume:true,
            fullscreen:true,
                        
            height: 27,
            opacity: 1.0,
            sliderColor: '#333333', 
            progressColor: '#ff6600', 
            bufferColor: '#ff9966',            
            volumeSliderColor: '#333333',
                        
            autoHide: 'always',
            hideDelay: 1000
        }
    }
}
