$(document).ready(function() {

//videos


// a- tags with class "myPlayer" are transformed into video players
flowplayer("a.myPlayer", "/Portals/77655/flowplayer/flowplayer.commercial-3.2.2.swf", {

	key: '#@52bd33e26581d9b409d',

	// logo initially has zero opacity
	logo: {
		url: '/Portals/77655/flowplayer/jmwatermark.png',
		fullscreenOnly: false,
		opacity: 0.3,
		bottom: '20',
		left: '25'
	},

	clip:  {
        autoPlay: true,
        autoBuffering: true
    },
	
	canvas:  {
	// remove default canvas gradient
	backgroundGradient: 'none',
	},

	plugins:{
		gatracker: {
			url: "/Portals/77655/flowplayer/flowplayer.analytics-3.2.0.swf",
			trackingMode: "Bridge",
			// we need to modify the name of the tracker object accordingly
			bridgeObject: "UA-17734966-1",
			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
		}
	}

});

});