/** 
 * Example external configuration file.  
 * You can freely categorize these nodes 
 */  
var conf = { 
     
    // default clip configuration 
    defaults: { 
         
        autoPlay: true, 
        autoBuffering: true, 
        baseUrl: 'http://babesofbabylon.com', 
     
        // functions are also supported 
        onBegin: function() { 
             
            // make controlbar visible in 4000 seconds 
            this.getControls().fadeIn(4000); 
        } 
         
    }, 
     
    // my skins 
    skins: {         
        black:  { 
			background: 'url(/graphics/menu2008/bg-black-o66.png)',
			backgroundColor: 'transparent', 
            backgroundGradient: 'none',
			autoHide: 'always',
			buttonColor: "#555555",
			buttonOverColor: "#9AB7DB",
            scrubber: true,
            sliderColor: '#333333', 
            progressColor: '#557397', 
            bufferColor: '#333333',
			volumeSliderColor: '#333333',
            opacity: 0,
			timeColor: "#9AB7DB", 
            durationColor: "#ffffff",
			timeBgColor: '#000000',
            time: true 
        } 
         
        // setup additional skins here ...         
    } 
     
}
