$(document).ready(function() {
	
	if($('#player').length == 1) {
		/* Do Flowing */
		flowplayer("player", "js/flowplayer-3.1.0.swf", {
			clip: {
				autoPlay: false,
				autoBuffering: true
			},
			playlist: [
				{
					url: 'images/splash-image.jpg',
					autoPlay: true,
					scaling: 'scale'
				},
				{
					url: $('#player').attr("href")
				}
			],
		    plugins:  {
		        controls: {
					sliderGradient: 'none',
					tooltipTextColor: '#EAA540',
					timeColor: '#ffffff',
					progressGradient: 'medium',
					volumeSliderColor: '#000000',
					volumeSliderGradient: 'none',
					progressColor: '#000000',
					durationColor: '#EAA540',
					bufferColor: '#484848',
					buttonOverColor: '#9F9F9F',
					tooltipColor: '#484848',
					backgroundColor: '#222222',
					backgroundGradient: 'none',
					buttonColor: '#484848',
					sliderColor: '#000000',
					timeBgColor: '#555555',
					bufferGradient: 'none',
					height: 25,
					opacity: 0.9
				}
			}
		});		
	}
	
});