/*
 * 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("video",

		/*
			first argument supplies standard Flash parameters. See full list:
			http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_12701
		*/
	  {
		 src:'/memberAdmin/help_videos/flowplayer/FlowPlayerDark.swf',
			version:[9,115],
			onFail: function(version)  { return "version " +this.version+ "of flash is required. you have " +version; },
			width: 351,
			height: 247		  },

	  /*
			second argument is Flowplayer specific configuration. See full list:
			http://flowplayer.org/player/configuration.html
		*/
	  {config: {
			videoFile: '/images/artspanintro_resized.mov',
			autoPlay: false,
			loop: false,
			autoRewind: true,
			showLoopButton: true

	  }}
   );
}
