// Configuracion video player 

  flowplayer("player", g_HttpRelativeWebRoot + "groups/imagenes/documents/imagen/flowplayer-3.1.3.swf", {           

    play: {
        replayLabel: "Reproducir de nuevo"
    },  
	    
    plugins: {  
		
        controls: {
            opacity: 0.85,
            height: 26,
            backgroundColor: "#e05316",
            buttonColor: "#361001",
            buttonOverColor: "#752401",
            progressColor: "#812801",
            bufferColor: "#663300",
            tooltipColor: "#573001",
            tooltipTextColor: "#ffffff",
            volumeSliderColor: '#1b1001',
            all: false,
            play: true,
            volume: true,
            stop: true,
            mute: true,
            scrubber: true,
            fullscreen: true,
            
	    tooltips: {
	        buttons: true,
	        play: "Reproducir",
	        stop: "Detener",
	        pause: "Pausa",
	        fullscreen: "Pantalla completa",
	        fullscreenExit: "Salir de pantalla completa",
	        mute: "Mudo",
	        unmute: "Sonido"
            }
        }
    },
    
    clip: {
        autoBuffering: true,
        autoPlay: true
    }

});




