	A minimal setup to get you started. This configuration is the same
	as in our Quick Start documentation:
	
	http://flowplayer.org/player/quick-start.html


<head>  

	<title>Simple Flowplayer example</title>
	
	 
		include flashembed - which is a general purpose tool for 
		inserting Flash on your page. Following line is required.
	
	<script type="text/javascript" src="js/flashembed.min.js"></script>
	
	 some minimal styling, can be removed 
	<link rel="stylesheet" type="text/css" href="css/common.css"/>

	<script>
	
	 /*
		use flashembed to place flowplayer into HTML element 
		whose id is "example" (below this script tag)
	 */
	 flashembed("example", 
	
		/* 
			first argument supplies standard Flash parameters. See full list:
			http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_12701
		*/
		{
			src:'FlowPlayerDark.swf',
			width: 713, 
			height: 535
		},
		
		/*
			second argument is Flowplayer specific configuration. See full list:
			http://flowplayer.org/player/configuration.html
		*/
		{config: {
			splashImageFile: 'images/loading.jpg',
			progressBarBorderColor1: '0xffffff',
			progressBarBorderColor2: '0xffffff',
			progressBarColor1: '0xa0a0a0',
			progressBarColor2: '0xa0a0a0',
			bufferBarColor1: '0x353535',
			bufferBarColor2: '0x353535',
			showVolumeSlider: true,
			controlsOverVideo: 'ease',
			controlBarBackgroundColor: -1,
			controlBarGloss: 'low',
			autoPlay: false,
			autoBuffering: true,
			initialScale: 'scale',
			videoFile: 'videos/reel.flv'
		}} 
	);
	</script>	
	
</head>
<body bgcolor="white">
<center>
<br>
<br>


	 this DIV is where your Flowplayer will be placed. it can be anywhere 
	<div id="example"></div>
</center>
</body>



.link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
	color: #333333;
}
.title {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: normal;
	color: #000000;
}
.link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: bold;
	color: #000000;
}
.text {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: normal;
	color: #666666;
}
.head {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: bold;
	color: #666666;
}
.tel {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
	color: #000000;
	text-transform: none;
}
.black {
	font-size: 11px;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
	color: #000000;
}
.none {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
}
