function oninit1(){
  videos_aleat("div_cadreVideo");
}

function lanceRechercheAccueil(form){
  document.location.href='/liste?'+getQueryStringByForm($(form));
}

var nbimage= 70; /* nombres d'insert x10 pour le random */ 
var urlvideo;
var titrevideo;
var lienclictitre;
var numimage;
function videos_aleat(div){
  numimage= Math.round(Math.random()*(nbimage-1)+1);
  if (numimage <= 10)
  {
  lienclictitre = "/liste-rubrique-GAJ.html?CRITINIT=0";
  urlvideo = "http://www.youtube.com/v/wM2qx_hAXJA&amp;hl=fr&amp;fs=1&color1=0x234900&color2=0x4e9e00&amp;autoplay=0";
  titrevideo = "Gîtes au jardin";
  }
  if (numimage > 10 && numimage <= 20)
  {
  lienclictitre = "/videos-alsace.html";
  urlvideo = "http://www.youtube.com/v/YPO_9E2swTo&amp;hl=fr&amp;fs=1&color1=0x234900&color2=0x4e9e00&amp;autoplay=0";
  titrevideo = "Campagne 2008/2009a";
  }
  if (numimage > 20 && numimage <= 30)
  {
  lienclictitre = "/videos-alsace.html";
  urlvideo = "http://www.youtube.com/v/Unu-e3SZwbk&amp;hl=fr&amp;fs=1&color1=0x234900&amp;color2=0x4e9e00&amp;autoplay=0";
  titrevideo = "Campagne 2008/2009b";
  }
  if (numimage > 30 && numimage <= 40)
  {
  lienclictitre = "/videos-alsace.html";
  urlvideo = "http://www.dailymotion.com/swf/x31x4v_video-alsace-terre-daventure&amp;autoPlay=0&amp;colors=background:4E9E00;glow:C8E0AF;";
  titrevideo = "Alsace, Terre d'aventures";
  }
  if (numimage > 40 && numimage <= 50)
  {
  lienclictitre = "/videos-alsace.html";
  urlvideo = "http://www.dailymotion.com/swf/x31x1a_video-alsace-terre-de-tresors&amp;autoPlay=0&amp;colors=background:4E9E00;glow:C8E0AF;";
  titrevideo = "Alsace, Terre de Trésors";
  }
  if (numimage > 50 && numimage <= 60)
  {
  lienclictitre = "/videos-alsace.html";
  urlvideo = "http://www.dailymotion.com/swf/x31wxa_video-alsace-terre-de-gastronomie&amp;autoPlay=0&amp;colors=background:4E9E00;glow:C8E0AF;";
  titrevideo = "Terre de Gastronomie";
  }
  if (numimage > 60)
  {
  lienclictitre = "/videos-alsace.html";
  urlvideo = "http://www.dailymotion.com/swf/x31xuo_video-alsace-strasbourg-colmar-mulh&amp;autoPlay=0&amp;colors=background:4E9E00;glow:C8E0AF;";
  titrevideo = "Présentation de l'Alsace";
  }
  
  var codeHtml = '<object data="' + urlvideo + '" width="180" height="145" type="application/x-shockwave-flash"><param name="movie" value="' + urlvideo + '"/><param name="wmode" value="transparent"/><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/></object><div class="titre_alea">' + '<a href="' + lienclictitre + '"><span class="titre_alea">' + titrevideo +'</span></a></div>';
  $(div).innerHTML = codeHtml;
  
}
