/**
 * Example external configuration file. 
 * You can freely categorize these nodes
 */ 
var conf = {
	
	// default clip configuration
	defaults: {
		autoPlay: true,
		autoBuffering: true,
		baseUrl: 'http://www.hitthebongo.co.uk/wordpress/video',
	
		// functions are also supported
		onBegin: function() {
			
			// make controlbar visible in 4000 seconds
			this.getControls().fadeIn(4000);
		}
		
	},
	
	// my skins
	skins: {		
		black:  {
			
			   url: 'flowplayer.controls.swf',    // always: where to find the Flash object 
            playlist: false,                // now the custom options of the Flash object 
            backgroundColor: '#000000', 
            tooltips: {                // this plugin object exposes a 'tooltips' object 
                buttons: true, 
                fullscreen: 'Enter Fullscreen mode' 
            } 
		}
		
		// setup additional skins here ...		
	}
	
}
