function player01(autostart) {
	var player01 = flowplayer("player01", "flash/video/player.swf", {
		canvas: {
			backgroundColor: 'transparent',
			backgroundGradient: 'none',
			borderRadius: 0
		},
		plugins: {
			controls: {
				url: 'flash/video/controls.swf',
				all: false,
				play: true,
				stop: true,
				mute: true,
				bottom: 10,
				left: 10,
				width: 65,
				height: 20,
			    borderRadius:0,
			    buttonColor: '#245E90',
			    buttonOverColor: '#AB1D29',
			    backgroundColor: 'transparent',
			    backgroundGradient: 'low'
			}
		},
		clip: {
			autoPlay: autostart,
			autoBuffering: true,
			baseUrl: './',
			onFinish: function() {
				player01.stop();
			} 
		},
		play: {
			url: 'images/play-button-webactor.png',
			opacity: 0.8,
			label: null,
			replayLabel: null,
			fadeSpeed: 500,
			rotateSpeed: 50 
		},
		contextMenu: [
			{'Webactor...' : function() {
				location.href = "http://www.webactor.de";
			}}
		],
		key: '#@29255226a4e44d6a3a2'
	});
	
}
