function oninit(){  
  if ($("div_calendrierMoteurContent")) refreshCalDateArr(); 
}

function selectRubrique(select){       
      document.location.href='/liste-hebergement.html?RUB='+$(select).value+'&CRITINIT=O';
}
/*---------calendrier-------------------*/                      
function clicCalendJs(evt,jour,mois,annee,etat){
  $("inpt_dateDeb").value=jour+"/"+mois+"/"+annee;
  afficheEffaceCalendJsMenu("div_calendrierMoteur");
}

function afficheEffaceCalendJsMenu(nomDiv){
  if($(nomDiv).showing==true){
    $(nomDiv).style.display="none";     
    $(nomDiv).showing=false;
  }else{
    $(nomDiv).style.display="block";       
    $(nomDiv).showing=true;
  }
}

function refreshCalDateArr(){
  setCalendrierGeneral("gites79","1","","","div_calendrierMoteurContent",clicCalendJs,"inpt_dateDeb","","","lst_nbj","1","");
  $("img_calendMoteur").onclick=function (evt){afficheEffaceCalendJsMenu('div_calendrierMoteur');}
	$("div_fermeCalend").onclick=function(evt){afficheEffaceCalendJsMenu("div_calendrierMoteur");};
  $("inpt_dateDeb").onfocus=function(evt){afficheEffaceCalendJsMenu("div_calendrierMoteur");};
}
