﻿function SetUpFlowPlayer(playerID, videoUrl)
{
    flowplayer(playerID, 'scripts/flowplayer/flowplayer-3.1.5.swf', {
                clip: { url: videoUrl},
	            plugins: {
	                controls: {
                                timeBgColor: '#555555',
                                durationColor: '#dcd6d0',
                                buttonColor: '#000000',
                                bufferColor: '#9B8767',
                                progressColor: '#9B8767',
                                tooltipColor: '#5F747C',
                                volumeSliderColor: '#000000',
                                timeColor: '#cec3bb',
                                backgroundColor: '#000000',
                                volumeSliderGradient: 'none',
                                sliderGradient: 'none',
                                sliderColor: '#000000',
                                buttonOverColor: '#311C00',
                                backgroundGradient: 'low',
                                bufferGradient: 'none',
                                borderRadius: '0',
                                progressGradient: 'medium',
                                tooltipTextColor: '#ffffff',
                                height: 24,
                                opacity: 1.0
		                      } 
	                      }
	        });
}