// flowplayer config object
var flowplayerConfig = {
	clip: {
		autoPlay: false
	},
	
	plugins: {
		controls: {
			backgroundColor: "#ffffff",
			timeColor: "#C8541A",
			timeBgColor: "#969696",
			buttonColor: "#969696",
			buttonOverColor: "#C8541A",
			progressColor: "#C8541A",
			bufferColor: "#CFCFCF", 
			sliderColor: "#CFCFCF",
			volumeSliderColor: "#CFCFCF"
		}
	}
};

// function which is used by the player to request its own config object
function getFlowplayerConfig(clipURL) {
	return jQuery.extend(true, {}, flowplayerConfig);
}
