/** 
 * Example external configuration file.  
 * You can freely categorize these nodes 
 */  
var conf = { 
  // default clip configuration 
  defaults: { 
      scaling: 'fit',
      autoPlay: false, 
      autoBuffering: false, 
      bufferLength: 3,
      provider: 'rtmp',
      // 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);
      }
  }, 
  version:[9, 115],  
  onFail: function(version)  {  
        document.getElementById('player').innerHTML =  
            'Your Flash version ' + version +  
            ' is too old to support high quality (H.264) videos. Go to <a href="http://www.adobe.com/">www.adobe.com</a> to upgrade to the latest version Flash.' 
        ;     
    },
  screen: {
    width:480, height:320, top:0, left:0
  },
  contents: { 
      url:'flowplayer.content-3.2.0.swf', 
      top: 180, 
      opacity:0.6, 
      border:0,
      backgroundColor: 'transparent', 
      backgroundGradient: 'none', 
      style: {  
	  body: {  
	      fontSize: 24,  
	      fontFamily: 'Arial', 
	      textAlign: 'center', 
	      color: '#808080' 
	  }  
      }
  }, 
    gatracker: {
	url: 'flowplayer.analytics-3.2.1.swf',
	labels: {
	    start: 'Start',
	    play: 'Play',
	    pause: 'Pause',
	    resume: 'Resume',
	    seek: 'Seek',
	    stop: 'Stop',
	    finish: 'Finish',
	    mute: 'Mute',
	    unmute: 'Unmute',
	    fullscreen: 'Full Screen',
	    fullscreenexit: 'Full Screen Exit'
	},
	debug: false,
	trackingMode: 'AS3',
	googleId: 'UA-18621633-1' // your Google Analytics id here
    },
  plugins: {
      captions: {
          url: '/swf/flowplayer.captions-3.2.3.swf',
          captionTarget: 'content'
      },
      controls: {
	  url: 'flowplayer.controls-3.0.3.swf',
	  // which buttons are visible and which not ?
	  play:true,
	  fullscreen:true,
	  // scrubber is a well known nickname to the timeline/playhead combination
	  scrubber: true
      }
  } 
}



