/**
 * Example external configuration file. 
 * You can freely categorize these nodes
 */ 
var conf = {
	
	// default clip configuration
	defaults: {
		
		autoPlay: true,
		autoBuffering: false,
	
		// functions are also supported
		onBegin: function() {
			
			// make controlbar visible, fade lasts 4 seconds
			this.getControls().fadeIn(4000);
		}
		
	},
	
	// my skins
	skins: {		
		gray:  {
			 tooltips: {
				
				// enable english tooltips on all buttons
				buttons: true,
				
				// customized texts for buttons
				play: 'Play',
				pause: 'Pause',
				fullscreen: 'Full Screen'
			},
            /* you may want to remove the gradient */ 
			opacity: 1,
			time: false,
			autoHide: true,
			backgroundColor: 'transparent', 
             
            // these buttons are visible 
            all:false, 
            scrubber:true, 
            play:true, 
            mute:false,
            volume:true, 
            fullscreen:true,  
             
            // custom colors 
            sliderColor: '#333333', 
            progressColor: '#9E0176',             
            volumeColor: '#333333',             
            volumeSliderColor: '#333333',
            buttonColor: '#9E0176', 
            buttonOverColor: '#ffffff', 
			sliderBorder: '0px solid #808080',
			volumeBorder: '0px solid #808080',
             
            // custom height 
            height: 20
		}
		
			
	},
	
	viral: {
			// load the viral videos plugin
			url: '/flowplayer/flowplayer.viralvideos-3.2.2.swf',
			
			
			email: false,
			
			share: {
				// define a video title used in sharing
				description: 'Extreme surfers riding big waves',
				
				// disable livespaces (it's from Microsoft)
				livespaces: false
			},
			// disable embedding completely, the same syntax can 
			// be used to disable also email and share
			embed: false			
		}
	
}
