/* IE6 hover sur les li */
metabarre_sfHover = function() {
 if ($("ul_menuHaut") != null) {
 var sfEls = document.getElementsByClassName("li-item");
 for (var i=0; i<sfEls.length; i++) {
  sfEls[i].onmouseover=function() {
  this.className+=" sfhover";
 }
   sfEls[i].onmouseout=function() {
   this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
 }
 }
 }
}
if (window.attachEvent) window.attachEvent("onload", metabarre_sfHover);

function oninit(){
  aleatoire();
  metabarre_sfHover();
}

function aleatoire(){
	var ind = parseInt(Math.random()*5);
	$("img_aleatoire").src="/config_v3/50/P.v3//MANCHE_LOCATION.FRANCAIS//librairie/img/bandeau/"+ind+".jpg";
}

function envoiContact(){
  envoiMailByAjaxByForm('frm_contact','frm_contact',true);
}

function verifEnCours(){
  $("p_attente").innerHTML="V&eacute;rification du formulaire en cours...";
}