/*
* 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("33x9NS", 
   
		/* 
			first argument supplies standard Flash parameters. See full list:
			http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_12701
		*/
      {
         src:'FlowPlayerLight.swf',
			width: 280, 
			height: 198
      },
		
      /*
			second argument is Flowplayer specific configuration. See full list:
			http://flowplayer.org/player/configuration.html
		*/
      {config: {   
			videoFile: '33x9NS.flv'
      }} 
   );
}

