		// install everything after page is ready
function createVideo(color1, color2, fileurl) {
	$f("player", "http://nel.britainonshow2009.openideas.ath.cx/flash/flowplayer-3.2.0.swf", {
		
	//canvas background
	
		canvas: {
			backgroundImage: 'url('+fileurl+')'
		},
		
		plugins: {
		controls: {
			url: '/flash/flowplayer.controls-3.2.0.swf',
			
		autoHide: 'never',
		buttonColor: '#ffffff',
		timeBorder: '1px solid rgba(0, 0, 0, 0.3)',
		borderRadius: '0px',
		backgroundGradient: 'none',
		sliderGradient: 'none',
		progressGradient: 'medium',
		tooltipTextColor: '#ffffff',
		timeBgColor: '#555555',
		volumeSliderGradient: 'none',
		volumeSliderColor: 'none',
		volumeColor: color1,
		bufferGradient: 'none',
		tooltipColor: color1,
		sliderColor: '#000000',
		volumeSliderColor: '#000000',
		timeColor: "transparent",
		buttonOverColor: '#000000',
		backgroundColor: color1,
		durationColor: '#ffffff',
		progressColor: color2,
		bufferColor: '#4c5053',
		height: 20,
		opacity: 1.0,
		  
		play:true,
		volume:true,
		mute:true,
		time:false,
		stop:false,
		playlist:false,
		fullscreen:true,
		fastBackward:false,
		fastForward:false,

		// scrubber is a well-known nickname for the timeline/playhead combination
		scrubber: true



		}
	},
	clip: {
    	autoPlay: false
    }
	
});

}

