var conf = { 
     
    // default clip configuration 
    defaults: {          
        autoPlay: true, 
        autoBuffering: true, 
        baseUrl: '', 

        // functions are also supported 
        onBegin: function() {              
            // make controlbar visible in 4000 seconds 
            this.getControls().fadeIn(4000); 
        } 
         
    }, 
     
    // my skins 
    skins: {         
        apple:  { 
			autoHide: 'always',
            backgroundGradient: 'none',
			backgroundColor: 'transparent',
            //buttonColor: '#333333', 
            opacity: 0, 
            bottom: '10',
			all: false,
			play: true, 
			time: true,
			scrubber: true,
			fullscreen: true,
			mute: true,
			buttonColor: '#8899ff',
			buttonOverColor: '#5588bb',
			bufferColor: '#8899ff',
			progressColor: '#5588bb',
			timeColor: '#8899ff',
            tooltipColor: '#112233', 
            tooltipTextColor: '#8899ff'
        }        
    } 
     
}
