/** 
 * Example external configuration file.  
 * You can freely categorize these nodes 
 */  
var conf = { 
     
    // default clip configuration 
    defaults: { 
         
        autoPlay: true, 
        autoBuffering: true, 
				baseUrl: '/downloads/videos/',
     
        // functions are also supported 
        onBegin: function() { 
             
            // make controlbar visible in 4000 seconds 
            this.getControls().fadeIn(4000); 
						
        }		
    },
						
	clip: { 
		// track start event for this clip 
		onStart: function(clip) { 
			_tracker._trackEvent("Videos", "Play", clip.url); 
		}, 
	
		// track pause event for this clip. time (in seconds) is also tracked 
		onPause: function(clip) { 
			_tracker._trackEvent("Videos", "Pause", clip.url, parseInt(this.getTime())); 
		}, 
	 
		// track stop event for this clip. time is also tracked 
		onStop: function(clip) { 
			_tracker._trackEvent("Videos", "Stop", clip.url, parseInt(this.getTime())); 
		}, 
	
		// track finish event for this clip 
		onFinish: function(clip) { 
			_tracker._trackEvent("Videos", "Finish", clip.url); 
		} 
	}, 

     
    // my skins 
    skins: {         
        gray:  {         	
            backgroundColor: '#999999', 
            buttonColor: '#999999',
            buttonOverColor: '#6d6d6d',
       		backgroundGradient: 'low',
       		opacity: 0, 
            
            progressColor: '#505050',
            progressGradient: 'none',
            bufferColor: '#7a7a7a',
            bufferGradient: 'none',
            sliderColor: '#4c4c4c',
            sliderGradient: 'none',
            
            volumeSliderColor: '#000000',
                        
			scrubberHeightRatio: 0.1,
			
			time: true,
        	timeColor: '#bbbbbb',
        	durationColor: '#bbbbbb',
        	timeBgColor: '#6f6f6f',
        	timeBgHeightRatio: 0.6,
        	
        	volume:false,
        	
	        tooltipColor: '#888888',
        	
	        // tooltips (since 3.1) 
	        tooltips: { 
	            buttons: true,
	            fullscreen: 'Enter fullscreen mode',
	            play: 'Play'
	        } 
	
        } 
         
        // setup additional skins here ...         
    }
}

