// JavaScript Document
/**
 * Example external configuration file. 
 * You can freely categorize these nodes
 */ 
var conf = {
	
	// default clip configuration
	defaults: {
		
		autoPlay: true,
		autoBuffering: true,
		baseUrl: 'http://media.cellstores.com/mmc/videos/',
		scaling: 'fit',
	
		// functions are also supported
		onBegin: function() {
			
			// make controlbar visible, fade lasts 4 seconds
			this.getControls().fadeIn(100);
		}
		
	},
	
	// my skins
	skins: {		
		gray:  {
			
			
			


	//Progress Bar Settings
	// scrubber is a well-known nickname for the timeline/playhead combination
	scrubber: true,
	progressColor: '#474745',
	bufferColor: '#000000',
	
	//Tool Tip
	tooltipColor: '#232323',
 	tooltipTextColor: '#ffffff',
	 
	//Time Settings
	timeColor: '#F8F8F8',
	timeBgColor: '#232323',
	timeBorder: '1px solid #232323',
     
	
	buttonOverColor: '#666666',
	bufferGradient: 'none',
	sliderGradient: 'none',
	
	durationColor: '#f8f8f8',
	buttonColor: '#883120',
	buttonColor: '#c2c2c2',
	
	
	//Volume Controls
	volumeColor: '#474745',
	volumeSliderColor: '#232323',
	volume:true,
	mute:true,
		
		
	//Gradient Settings
	backgroundGradient: 'none',
	progressGradient: 'none',
	volumeSliderGradient: 'none',
	
	//Controller Global Settings
	backgroundColor: '#232323',
	borderRadius: '0',
	
	
	
     
	//AutoHide the Controller 
	autoHide: 'never',
	
	//Height of the controller
	height: 20,
	
	//Initial Opacity of the Controller
	opacity: .5,
			
	//Show Play button
	play:true,

	//Show Time
	time:true,
	
	//Show Stop Button
	stop:false,
	
	//Show Playlist
	playlist:false,
	
	//Show FullScreen Button
	fullscreen:false




			
		}
		
		// setup additional skins here ...		
	}
	
}



