// JavaScript Document

/*
	use flashembed to place flowplayer into HTML element 
	whose id is "example" (below this script tag)
 */
 flashembed("demo", 

	/* 
		first argument supplies standard Flash parameters. See full list:
		http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_12701
	*/
	{
		src:'/includes/FlowPlayerLight.swf',
		width: 550, 
		height: 413
	},
	
	/*
		second argument is Flowplayer specific configuration. See full list:
		http://flowplayer.org/player/configuration.html
	*/
	{config: {   
		autoPlay: false,
		autoBuffering: true,
		controlBarBackgroundColor:'0x2e8860',
		initialScale: 'scale',
		videoFile: '/video/mfm_demo_640x480.flv'
	}} 
);
 
 flashembed("restream", 

	/* 
		first argument supplies standard Flash parameters. See full list:
		http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_12701
	*/
	{
		src:'/includes/FlowPlayerLight.swf',
		width: 550, 
		height: 413
	},
	
	/*
		second argument is Flowplayer specific configuration. See full list:
		http://flowplayer.org/player/configuration.html
	*/
	{config: {   
		autoPlay: false,
		autoBuffering: true,
		controlBarBackgroundColor:'0x2e8860',
		initialScale: 'scale',
		videoFile: '/video/restream_demo_640x480.flv'
	}} 
);