// JavaScript Document


Aujourdhui= new Date();
Mois=Aujourdhui.getMonth() +1;
Jour=Aujourdhui.getDate();

if (Mois == "12" && ((Jour >= "10") && (Jour < "31" )))
{


			document.body.style.backgroundImage = 'url("images/fond1noel.jpg")';
      document.getElementById("bandoh").style.backgroundImage = 'url(images/fondbandoH1noel.jpg)';
      document.getElementById("pied").style.backgroundImage = 'url(images/pied1noel.jpg)';
}

else
{

      document.body.style.backgroundImage = 'url("images/fond1.jpg")';
      document.getElementById("bandoh").style.backgroundImage = 'url(images/fondbandoH1.jpg)';
      document.getElementById("pied").style.backgroundImage = 'url(images/pied1.jpg)';
    
}


