/**  * Example external configuration file.   
* You can freely categorize these nodes  */  
var conf = {          // default clip configuration
		defaults: {                  
					autoPlay: true, 
					autoBuffering: false, 
//baseUrl: 'http://blip.tv/file/get', 

onStart: function(clip) { 
				  pageTracker._trackEvent("Videos", "Play", clip.url); 
				     }, 
// track pause event for this clip. time (in seconds) is also tracked  
				 onPause: function(clip) {
				 pageTracker._trackEvent("Videos", "Pause", clip.url, parseInt(this.getTime())); 
				                 }, 
// track stop event for this clip. time is also tracked
				 onStop: function(clip) {
				  pageTracker._trackEvent("Videos", "Stop", clip.url, parseInt(this.getTime()));
				   },  
				                                    
// track finish event for this clip
				  onFinish: function(clip) {
				  pageTracker._trackEvent("Videos", "Finish", clip.url); 
				  },
				  
				  
				  onMouseOver: function(clip) { 
        // take handle to player container 
        var container = this.getParent();  
         
        // make it to a jQuery object and use the expose tool with custom color 
        $(container).expose({color:"#254558", api: true}).load(); 
    }, 
     
    // when mouse is exited remove exposing 
    onMouseOut: function(clip) { 
         $(this.getParent()).expose().close();     
    }   
				  
				  

				},
    skins: { // creamos un skin
skinDEMO: {
	volumeSliderColor: '#000000',
      timeColor: '#ffe3b8',
      progressGradient: 'medium',
      durationColor: '#cc6f00',
      timeBgColor: '#555555',
      bufferGradient: 'none',
      tooltipTextColor: '#ffffff',
      sliderColor: '#8fc43b',
      volumeSliderGradient: 'none',
      backgroundGradient: 'none',
      borderRadius: '0px',
      backgroundColor: '#000000',
      buttonOverColor: '#f08d00',
      buttonColor: '#f05e00',
      bufferColor: '#572f00',
      tooltipColor: '#5F747C',
      sliderGradient: 'none',
      progressColor: '#ff8a00',
      height: 25,
      opacity: 0.6,
	  autoHide: 'always'}, skinDEMO2: { sliderGradient: 'none',timeColor: '#334455',backgroundGradient: [0.5,0.2,0,0,0],sliderColor: '#112233',buttonOverColor: '#666666',bufferGradient: 'high',bufferColor: '#445566',buttonColor: '#112233',progressGradient: 'medium',progressColor: '#8899AA',durationColor: '#8899AA',backgroundColor: '#112233',borderRadius: '5px',opacity:1.0,play:true,volume:true,mute:true,time:false,stop:false,playlist:false,fullscreen:true,scrubber: true,height: 30,autoHide: 'always'}
    }
										
										 
}

