/* +++ FLOWPLAYER +++ */
  
	/*
	 * window.onload event occurs after all HTML elements have been loaded
	 * this is a good place to setup your Flash elements
	 */
	window.onload = function() {  
		 /*
			use flashembed to place flowplayer into HTML element 
			whose id is "example" (below this script tag)
		 */
		 flashembed("webvideo-animagic2008", 
			/* 
				first argument supplies standard Flash parameters. See full list:
				http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_12701
			*/
			{
				src:'http://www.kastellamedia.com/fileadmin/templates/kastellamedia_com/FlowPlayerLight.swf',
				width: 440, 
				height: 245,
				bgcolor:'#ffffff'
			},
			
			/*
				second argument is Flowplayer specific configuration. See full list:
				http://flowplayer.org/player/configuration.html
			*/
			{config: {   
				autoPlay: false,
				//splashImageFile
				showStopButton: false, 
				showScrubber: true, 
				showMuteVolumeButton: true, 
				showFullScreenButton: false, 
				showMenu: false, 
				controlBarBackgroundColor:'#ffffff', /*-1 oder farbe*/
				initialScale: 'orig',
				showVolumeSlider: false,
				videoFile: 'http://www.kastellamedia.com/fileadmin/templates/kastellamedia_com/media/animagic2008-02.mp4',
				controlBarGloss: 'none', /*'high', 'low' or 'none'.*/
				hideControls: false,
				autoRewind: true,
				loop: false,
				//bufferLength: 3,
				allowResize: false,
				controlsOverVideo: 'locked', /*locked, ease, no*/
				//startingBufferLength: 1
			}} 
		);
