/**
 * Example external configuration file. 
 * You can freely categorize these nodes
 */ 
var conf = {
	
	// default clip configuration
	defaults: {
		
		autoPlay: true,
		autoBuffering: true,
		baseUrl: 'http://www.youcanpaintclub.com/videos',
	
	clip: { 
 
	
        // duration for the parent clip 
 
    			
		// functions are also supported
		onBegin: function() {
			
			// make controlbar visible, fade lasts 4 seconds
			this.getControls().animate({bottom:'10%'}, 3000);
		}
		
	},
	
	  // instream playlist 
        playlist: [ 
 
            // before the parent clip starts (ie. "pre-roll") 
            {url: 'Having_Faith_In_You_qtp.mp4', position: 0},
	     {url: 'Who_is_Darrell_Crow_qtp.mp4', position: 900},
	           
        ] 
 
	},
	
	// my skins
	skins: {		
		gray:  {
			backgroundColor: '#FFFFFF',
			buttonColor: '#FFFFFF',
			opacity: 0,
			time: false,
			autoHide: false
		}
		
		// setup additional skins here ...		
	}
	
}
	


