function init_video()
 {
    // Add VideoJS to all video tags on the page when the DOM is ready
    VideoJS.setupAllWhenReady();


   }



    
function integration_video(video, taille) 
{

var repertoire_films = "datas/films/";
var video_w1 = "700";
var video_h1 = "525";
var video_w2 = "100";
var video_h2 = "75";
var video_w3 = "200";
var video_h3 = "150";
var lecteur_flash_video = "flowplayer-3.2.7.swf";

var sharing = "include/video/flowplayer.sharing-3.2.1.swf";
 
 if (taille == 1)
 {
  w = video_w1;
  h = video_h1;
  autoPlay= "true";
  image_jpg= "/images/logo_film_grand.jpg";
  play= "true";
  volume = "true";
  mute = "true";
  time = "false";
  stop = "false";
  playlist = "false";
  fullscreen= "true";
  scrubber ="true";
  control = '{"url": "include/video/flowplayer.controls-3.2.5.swf","play":'+play+',"volume":'+volume+',"mute":'+mute+',"time":'+time+',"stop":'+stop+',"playlist":'+playlist+',"fullscreen":'+fullscreen+',"scrubber": '+scrubber+' }';
  sharing =', "sharing":{ "url":"'+sharing+'", "email":{"subject":"Video SYCLOP"},"facebook":{"shareWindow":"_blank"},"twitter":{"shareWindow":"_blank"}  }';
 }
 else if (taille == 0 )
 {
  w = video_w2;
  h = video_h2;
  autoPlay= "false";
  image_jpg= "/images/logo_film.jpg";
  play= "false";
  volume = "false";
  mute = "false";
  time = "false";
  stop = "false";
  playlist = "false";
  fullscreen= "false";
  scrubber ="false";
 control = '{"url": "include/video/flowplayer.controls-3.2.5.swf","play":'+play+',"volume":'+volume+',"mute":'+mute+',"time":'+time+',"stop":'+stop+',"playlist":'+playlist+',"fullscreen":'+fullscreen+',"scrubber": '+scrubber+',"opacity":0 }';
 sharing ="";
  }
 else
 {
  w = video_w3;
  h = video_h3;
  autoPlay= "false";
  image_jpg= "/images/logo_film.jpg";
  play= "false";
  volume = "false";
  mute = "false";
  time = "false";
  stop = "false";
  playlist = "false";
  fullscreen= "false";
  scrubber ="false";
 control = '{"url": "include/video/flowplayer.controls-3.2.5.swf","play":'+play+',"volume":'+volume+',"mute":'+mute+',"time":'+time+',"stop":'+stop+',"playlist":'+playlist+',"fullscreen":'+fullscreen+',"scrubber": '+scrubber+',"opacity":0 }';
 sharing ="";
  }

  lecteur = "/include/video/" + lecteur_flash_video;

 
 var insertion =
 '<video id="vid" class="video-js" width="'+ w +'" height="'+ h +'" controls="controls" preload="auto" poster="'+image_jpg+'"> '
  +
  
 '<source src="'+video+'" type=\'video/mp4; codecs="avc1.42E01E, mp4a.40.2"\' /> '
  +
    
   '<object id="flash_fallback_1" class="vjs-flash-fallback" width="'+w+'" height="'+h+'" type="application/x-shockwave-flash" data="'+lecteur+'">'

  +
  
   '<param name="movie" value="'+lecteur+'" /> '

  +
  
   '<param name="allowfullscreen" value="true" />'
   
  +

   '<param name="flashvars" value=\'config={'
   
  +'"playlist":["'+image_jpg+'", {"url": "'+video+'","autoPlay":'+autoPlay+',"autoBuffering":true}],'
  
  +'"plugins": {"controls":'+control+' '+sharing+' }'
  

  + ' }\' /> '

  +
    '<img src="'+image_jpg+'" width="'+w+'" height="'+h+'" alt="Image video" title="No video playback capabilities." /> '
  
  +

 ' </object> </video>';
    
 document.write(insertion);
 
}


