/**
 * Example external configuration file. 
 * You can freely categorize these nodes
 */ 
 
var conf = {
	
	// default clip configuration
	defaults: {
		
		autoPlay: true,
		autoBuffering: true,
	
		// functions are also supported
		onBegin: function() {
			// make controlbar visible in 4000 seconds
			this.getControls().fadeIn(4000)
		},
		
		onFinish: function() {        // set an event handler in the configuration 
			location.reload()
   		}
		
	}
};