// JavaScript Document

	/*
	 * 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("video2", 
		
			/* 
				first argument supplies standard Flash parameters. See full list:
				http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_12701
			*/
			{
				src:'../overview/flowplayer/FlowPlayerClassic.swf',
				width: 392, 
				height: 322
			},
			
			/*
				second argument is Flowplayer specific configuration. See full list:
				http://flowplayer.org/player/configuration.html
			*/
			{config: {   
				autoPlay: true,
				videoFile: 'http://www.pplexec.com/overview/video1/video1.flv',
				loop:false,
			}}
		);
		
	}
