/** 
 * Example external configuration file.  
 * You can freely categorize these nodes 
 */  
var conf = { 
     
     // default clip configuration 
    defaults: { 
         
    		autoPlay: true, 
    		wmode: "transparent",
    		scaling: "fit",
    		autoBuffering: true,
    		// track start event for this clip         
        	onStart: function(clip) {             
            	google._trackEvent("Videos", "Play", clip.url);         
        	}, 
         
        	// track pause event for this clip. time (in seconds) is also tracked        
        	onPause: function(clip) {             
            	google._trackEvent("Videos", "Pause", clip.url, parseInt(this.getTime()));         
        	},                 
         
        	// track stop event for this clip. time is also tracked         
        		onStop: function(clip) {             
            		google._trackEvent("Videos", "Stop", clip.url, parseInt(this.getTime())); 
        		},                  
         
        	// track finish event for this clip         
        	onFinish: function(clip) {             
            	google._trackEvent("Videos", "Finish", clip.url);         
        	}   

         
    }, 
     
    skins:  { 
			brown: { 
					volumeSliderGradient: 'none',
					timeBgColor: '#2A1C19',
					backgroundColor: '#9D5E2A',
					buttonColor: '#2A1C19',
					tooltipTextColor: '#ffffff',
					progressColor: '#e8aa4a',
					volumeSliderColor: '#2A1C19',
					bufferColor: '#D4D85A',
					tooltipColor: '#5F747C',
					sliderGradient: 'none',
					borderRadius: '0',
					backgroundGradient: 'none',
					buttonOverColor: '#2A1C19',
					bufferGradient: 'none',
					sliderColor: '#2A1C19',  
					timeColor: '#F2E49C',
					progressGradient: 'medium',
					durationColor: '#D4D85A',
					height: 24,
					opacity: 1.0,
		
					// tooltips configuration 
					tooltips: { 
		
							// enable english tooltips on all buttons 
							buttons: true, 
		
							// no tooltip for pause button 
							pause: null, 
		
							// customize text on the Fullscreen button 
							fullscreen: 'Enter Fullscreen mode' 
					}, 
		
					// background color for all tooltips 
					tooltipColor: '#9D5E2A', 
		
					// text color 
					tooltipTextColor: '#2A1C19',  
					
					stop: true
			} 
		},  
		
		
		canvas: {
		
			backgroundColor: '#3F4101',
			backgroundGradient: 'none'
		}
     
}