// *** FLOWPLAYER CONFIGURATION ***
$(document).ready(function(){
	$("#video").flowplayer("/flash/flowplayer-3.1.1.swf", { 
		canvas:  { 
			// configure background properties 
			background: 'transparent url(../video/splash.gif) no-repeat'
//			backgroundColor: '#000000'			
			// remove default canvas gradient 
//			backgroundGradient: 'none'
			// setup a light-blue border 
//			border:'2px solid #778899' 
		},
		play: { 
			opacity: 1
		},
		plugins: {
			controls:null
		},
		clip: { 
			autoPlay: false,
			bufferLength: 3
		}
	}); 
	$('#play_video').click(function() {
		$f().play();
	});
});
