{
var flowPlayer;

var fpConf = {
		streamingServerURL: 'rtmp://www.i4ds.ch:1955/oflaDemo',
		videoFile: 'simwalk.flv',
		thumbsOnFLV: false,
		showMenu: false,
		showLoopButton: false,
		showPlayList: false,
		autoPlay: false,
		autoBuffering: true,
		startingBufferLength: 5,
		bufferLength: 20,
		loop: false,
		videoHeight: 210,
		hideControls: false,
		progressBarColor1: 0xFF0000,
		progressBarColor2: 0xFF0000,
		bufferBarColor1: 0x00FF00,
		bufferBarColor2: 0x00FF00,
		progressBarBorderColor1: 0xAAAAAA,
		progressBarBorderColor2: 0xAAAAAA
};
	
	function init() {
		
		if(document.getElementById) {
			flowPlayer = document.getElementById("FlowPlayer");
		}

		flowPlayer.setConfig(fpConf);
		
	}
	window.onload=init;
}
