jQuery(document).ready(function() {
	
	//nombre de vidéo présente sur la page.
                nbVideo              =             jQuery("a.videoMedia").length;
                // si des vidéo sont présente ont ajout un élément pour permettre le dialogbox
                if(nbVideo > 0){
                               //jQuery("body").append('<div id="flowplayer"></div>');
                }
				jQuery("a.videoMedia").empty();
				jQuery("a.videoMedia").attr('id','flowplayer');
				jQuery("a.videoMedia").attr('style',"display:block;width:425px;height:300px;" );

                //# ouverture des liens vidéo en dialogbox avec lecteur vidéo flowplayer
                
				
				
		flowplayer("flowplayer", "/fileadmin/templates/players/flowplayer-3.2.5.swf", {clip: {
		
		// these two configuration variables does the trick
		autoPlay: false, 
		autoBuffering: true // <- do not place a comma here  
	},"screen":{"height":"100pct","top":0},"plugins":{"controls":{"timeColor":"rgba(255, 255, 255, 1)","borderRadius":"0px","slowForward":true,"bufferGradient":"none","backgroundColor":"rgba(189, 38, 21, 1)","volumeSliderGradient":"none","slowBackward":false,"timeBorderRadius":20,"time":true,"progressGradient":"none","height":26,"volumeColor":"rgba(10, 10, 10, 1)","tooltips":{"marginBottom":5,"volume":true,"scrubber":true,"buttons":false},"fastBackward":false,"opacity":1,"timeFontSize":12,"bufferColor":"rgba(0, 0, 0, 1)","border":"0px","volumeSliderColor":"rgba(0, 0, 0, 1)","buttonColor":"rgba(255, 255, 255, 1)","mute":true,"autoHide":{"enabled":true,"hideDelay":500,"hideStyle":"fade","mouseOutDelay":500,"hideDuration":400,"fullscreenOnly":true},"backgroundGradient":"none","width":"100pct","sliderBorder":"1px solid rgba(128, 128, 128, 0.7)","display":"block","buttonOverColor":"rgba(255, 255, 255, 1)","fullscreen":true,"timeBgColor":"rgba(0, 0, 0, 0)","scrubberBarHeightRatio":0.2,"bottom":0,"stop":true,"sliderColor":"#000000","zIndex":1,"scrubberHeightRatio":0.6,"tooltipTextColor":"rgba(0, 0, 0, 1)","sliderGradient":"none","spacing":{"time":6,"volume":8,"all":2},"timeBgHeightRatio":0.8,"volumeSliderHeightRatio":0.6,"timeSeparator":" ","name":"controls","volumeBarHeightRatio":0.2,"left":"50pct","tooltipColor":"rgba(135, 86, 135, 0)","playlist":false,"durationColor":"rgba(0, 0, 0, 1)","play":true,"fastForward":true,"progressColor":"rgba(0, 0, 0, 1)","timeBorder":"0px solid rgba(0, 0, 0, 0.3)","volume":true,"scrubber":true}}});	

				
});				
