/*
References:
http://flowplayer.org/documentation/skinning/index.html
http://flowplayer.org/documentation/skinning/branding.html
*/

var objectBGColor = "#333333";

var canvasStyle =  { 
	backgroundColor: '#000000',
	backgroundGradient: 'none' 
	//borderRadius: 20 
}

/*--------------*/

var cMenu = [];

/*--------------*/

var controlsValues = {  
	url: FlowPlayerControlsSWF,
		backgroundColor: "#4a0609",
		backgroundGradient: [0.2, 0],
		//backgroundImage: 'url(my/path/to/image.jpg)',
		//backgroundRepeat: 'repeat/no-repeat',
		//border: '1px solid #cccccc',
		borderRadius: '0',
		timeColor: '#ff9c00',
		//durationColor: '',
		progressColor: '#c21018', /*lo ya recorrido y cubierto*/
		progressGradient: 'low',
		bufferColor: '#9c0c14', /*lo buffereado para adelante*/
		bufferGradient: 'low',
		sliderColor:'#2d0002', 
		sliderGradient:'low',
		buttonColor: '#9c0c14',
		buttonOverColor: '#c21018',
		volumeSliderColor: '#2d0002',
		volumeSliderGradient: 'low',
		timeBgColor: '#820a10',
		//fontColor: '#ff0000',

		all: true,
		play: true,
		scrubber: true,
		stop: true,
		playlist: false,

		// tooltips
		tooltips: { 
			buttons: true, 
			fullscreen: null,
			fullscreenExit: null,
			pause: null,
			stop: null,
			play: null,
			volume: null,
			mute: null,
			unmute: null,
			scrubber: null
	    }
	} 

/*--------------*/

var logoConfig = { 
	url: sTPurlFlowPlayerSkin +'logo.png',  
	opacity: 1, 
	right: 0,
	top: 0,
	//zIndex:0, 
	//left: '50%',
	// for SWF-based logos you can supply a relative size (to make the logo larger in fullscreen) 
	//width: '6.5%', 
	//height: '6.5%', 
	// if set to false, then the logo is also shown in non-fullscreen mode 
	fullscreenOnly: false, 
	// time to display logo (in seconds). 0 = show forever 
	displayTime: 0, 
	//if displayTime > 0 then this specifies the time it will take for
	//the logo to fade out. this happens internally by changing the opacity
	//property from its initial value to full transparency. Value is given in milliseconds.
	fadeSpeed: 0 
	//linkUrl: 'http://www.oracle.com',
	//linkWindow: '_blank'
}

/*--------------*/

var playButton = {
	width: 55,
	height: 55,
	// all display properties, except the z-index, can be modified in all versions
	opacity: 0.8,
	// label text; by default no text
	label: null,
	// label text at end of video clip
	replayLabel: 'Repetir video',
	//progress indicator
	fadeSpeed: 500,
	// how fast buffering animation rotates
	rotateSpeed: 1000
}