/**
 * Example external configuration file. 
 * You can freely categorize these nodes
 */ 
var conf = {
	
	// default clip configuration
	defaults: {
		
		autoPlay: true,
		autoBuffering: true,
		baseUrl: 'http://www.apart.pl/files/video',
		play: { replayLabel: 'Odtwórz ponownie' },
	
		// functions are also supported
		onBegin: function() {
			// make controlbar visible, fade lasts 4 seconds
			this.getControls().fadeIn(4000);
		}
	},
	
	play: {
		replayLabel: 'Odtwórz ponownie'
	},

	// my skins
	skins: {		
		gray:  {
			backgroundColor: '#ffffff',
			buttonColor: '#333333',
			opacity: 80,
			time: true,
			autoHide: true
		}
		
		// setup additional skins here ...		
	}
	
}
