/**
 * Example external configuration file. 
 * You can freely categorize these nodes
 */ 
var conf = {
	
	// default clip configuration
	defaults: {
		autoPlay:true,
		autoBuffering: true,
		baseUrl: 'http://blip.tv/file/get',
	
		// functions are also supported
		onBegin: function() {
			// make controlbar visible, fade lasts 4 seconds
			this.getControls().fadeIn(4000);
		}
		
	},
	
	// my skins   #003355  #108101
	skins: {		
		gray:  {
			backgroundColor: '#000',
			buttonColor: '#000',
			opacity: 0,
			time: false,
			autoHide: false
		}
		
		// setup additional skins here ...		
	}
	
}


