/** 
 * Example external configuration file.  
 * You can freely categorize these nodes 
 */  
var conf = { 
     
    // default clip configuration 
    defaults: { 
         
        autoPlay: true, 
        autoBuffering: true, 
        baseUrl: 'http://www.sistabroza.com/', 
        //baseUrl: 'http://www.knightworks.fr/v0/', 
		scaling: 'fit',
     	// functions are also supported 
        onBegin: function() { 
             
            // make controlbar visible in 4000 seconds 
            this.getControls().fadeIn(4000); 
        } 
         
    }, 
    
    // my skins 
    skins: {         
        gray:  { 
            backgroundColor: '#666666', 
            buttonColor: '#333333', 
            opacity: 0, 
            time: false 
        } ,
         
        // setup additional skins here ...  
        darkdog: {
        
			// setup a background image
			//background: 'url(/img/player/skin_leather.png) repeat',
			backgroundColor: 'transparent',
			/* you may want to remove the gradient */
			backgroundGradient: 'none',
			
			// these buttons are visible
			all:false,
			scrubber:true,
			play:true,
			mute:true,
			fullscreen:true,
			volume:true,
			// custom colors
			bufferColor: '#EFB75F',
			progressColor: '#A80418',			
			buttonColor: '#EFB75F',
			buttonOverColor: '#A80418',
			
			// custom height
			height: 20,
			
			// setup auto hide
			autoHide: 'always',
			
			
			// a little more styling 			
			width: '98%', 
			bottom: 5,
			left: '50%',
			borderRadius: 15
		}       
    }	
			
     
}
