﻿$f("player", "/media/flash/flowplayer-3.2.1.swf",
			{
			    onLoad: function () {
			        this.setVolume(100);
			    },
			    canvas: {
			        backgroundColor: '#ffffff'
			    },
			    plugins: {
			        controls: {
			            progressColor: '#e7be5c',
			            buttonOverColor: '#e7be5c',
			            bufferColor: '#d99900',
			            buttonColor: '#d99900',
			            backgroundColor: '#aaaaaa',
			            backgroundGradient: 'high',
			            progressGradient: 'medium',
			            sliderColor: '#6e6e6e',
			            sliderGradient: 'medium',
			            bufferGradient: 'none',
			            timeColor: '#000000',
			            timeBgColor: '#999999',
			            durationColor: '#cccccc',
			            borderRadius: '0px',
			            opacity: 1.0
			        }
			    },
			    clip: {
			        autoPlay: false,
			        autoBuffering: true,
			        scaling: 'orig',

			        onResume: function (clip) {
			            pageTracker._trackEvent("Videos", "Play", clip.url);
			        },
			        onFinish: function (clip) {
			            pageTracker._trackEvent("Videos", "Finish", clip.url);
			        }
			    }
			}
			);