function play(clip) {
		var configuration = {
			src : 							"http://luftfahrtohnegrenzen.tv/modules/flowplayer/flowplayer.commercial-3.2.4.swf", 
			width : 						640, 
			height :						414, 
			wmode : 						"normal",

			// we need at least this version
			version : 						[10, 0],
			// older versions will see a custom message
			onFail : 						function() {
												document.getElementById("flowPlayer").innerHTML =
													"You need the latest Flash version to view MP4 movies. " +
													"Your version is " + this.getVersion();
											}
		}; 
		
		var parameters = {
			key : 								"#$a525f5bd72529f9dab7",
			clip : {
				autoPlay : 						true,
				autoBuffering : 				false,
				bufferLength : 					5,
				scale : 						"fit",
				provider : 						"rtmp",
				url : 							"MP4:"+clip+".f4v",
				onCuepoint : 					[ 					
					[{time: 6500}],
					function(clip, cuepoint) { 
						if(cuepoint.time == 6500) {
							this.getPlugin("content").animate({top:400,opacity:0}, 1500);
							this.getPlugin("controls").setAutoHide({enabled:true});
						}
					},
				]
			},
			
		plugins : {
			rtmp : {	
				url :						"http://luftfahrtohnegrenzen.tv/modules/flowplayer/flowplayer.rtmp-3.2.3.swf",
				netConnectionUrl :			"rtmp://92.51.171.26/vod/",
				objectEncoding : 			0
			},
			
			viral : {
				url :					"http://luftfahrtohnegrenzen.tv/modules/flowplayer/flowplayer.viralvideos-3.2.2.swf",
				icons: {
				  width:                50,
				  height:               100,
				  right:                15,
				  top:					75
				},
				
				embed : false,
				email : false,
				share : false
			},
			controls : { 
				autoHide : {
					enabled :				false,
					hideDelay :				500,
					hideStyle :				"move",
					mouseOutDelay :			500,
					hideDuration :			400,
					fullscreenOnly :		false
				}
			}
		}
	};
	
	flowplayer("flowPlayer",configuration, parameters);
};

