$(document).ready(function() {
	if($('#ConsultationsVideoPlayer')){
		
		//Please amend following 2 lines to indicate URI of SWFs
		var locationOfPlayerSWF = "/digitalAssets/39035_flowplayer.commercial-3.1.5.swf";
		var locationOfControlsSWF = "/digitalAssets/39036_flowplayer.controls-tube-3.1.5.swf";
		
		// Other variables, should not need editing
		
		// Flowplayer commercial license key
		var nominetLicenseKey = "#$f68ea4b59a03043ed60";
		
		// ID of container element to replace with Flash content
		var containerElementID = "ConsultationsVideoPlayer";
		
		// ID of <a> element containing 'href' attribute of FLV file to play
		var videoLinkElementID = "ConsultationsVideoPlayerURL";
		
		// ID of <img> element containing 'src' attribute of image to use for video 'splash screen'
		var splashImageElementID = "ConsultationsVideoPlayerSplash";
		
		var params = {
			'allowScriptAccess': 'always',
			'allowFullScreen': 'true',
			'bgcolor': '#000000'
		};
		
		var flashVars = {
			"config": "{'key':'"+nominetLicenseKey+"','playerId':'"+containerElementID+"','playlist':['"+$("#"+splashImageElementID).attr("src")+"',{'url':'"+$("#"+videoLinkElementID).attr("href")+"','autoPlay':false}],'plugins':{'controls':{'url':'"+locationOfControlsSWF+"','progressColor':'#5E1F84','bufferColor':'#DDD7F0','buttonOverColor':'#5E1F84','tooltipColor':'#5E1F84','tooltipTextColor':'#FFFFFF','volumeSliderColor':'#000000','timeBgColor':'#5E1F84','timeColor':'#FFFFFF'}}}"
		};
		
		var attributes = {
			"id": "VideoPlayer"
		}
		
		swfobject.embedSWF(locationOfPlayerSWF, containerElementID, 640, 384, "9.0.115", "", flashVars, params,attributes);	
	}	
});

