// JavaScript Document

$(document).ready(function() {

if($("#vid-player").length != 0 ) {
$f("vid-player", "js_css/flowplayer.commercial-3.1.5.swf",  {
   key: '#$d5bad20e425c43d7dd4',
		
	// use the first frame of the video as a "splash image"
	clip: {
		autoPlay: false,
		autoBuffering: true
	},
	
	// controlbar settings
	plugins:  {
		controls: {			
			
			all:false,
			scrubber:true,
			play:true,
			mute:true,
			fullscreen:true,
			
			// custom colors
			bufferColor: '#333333',
			progressColor: '#3D9CD4',			
			buttonColor: '#93CBE6',
			buttonOverColor: '#3D9CD4',
			
			// tooltip background color (since 3.1.0)
			tooltipColor: '#3D9CD4',
			tooltips: {				// this plugin object exposes a 'tooltips' object
                buttons: true,
                fullscreen: 'Enter Fullscreen mode'
            },
			
			// custom height
			height: 24,
			
			// setup auto hide
			autoHide: 'always',			
			
			// a little more styling 			
			width: '100%', 
			bottom: 5,
			left: '50%'
			
		}
	}
});
}
});