
//  POUR CE MESSAGES: \n pour retourner à la ligne
var MsgAccueil = "FERMETURE DU 8 AOUT AU 1er SEPTEMBRE";  

 //  POUR CE MESSAGE: <BR> pour retourner à la ligne
var MsgRetourFormulaire = "Votre demande a été prise en compte, nous vous répondrons le plus rapidement possible";

var IE = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) >= 4);
var Delai = 15;
var Pas = 20;
var dl;
var Img;
var TailleReb;

function AfficheMessage()
{
	(document.all) ? MsgAccueil ="<marquee scrollAmount=5 style='width:600'>" + MsgAccueil  + "</marquee>" : MsgAccueil ="<blink>" + MsgAccueil  + "</blink>"
	document.getElementById("Message").innerHTML = MsgAccueil ;
}

function Animation()
{
	Img = document.getElementById("Pos");
	if(IE)
	{
Img.style.posLeft = 5000 - Img.offsetLeft - Img.offsetWidth;
Img.initLeft = Img.style.posLeft;
dl = Img.initLeft / Pas;
Droite();
TailleReb=document.body.clientWidth/3;
	}
}
  
function Droite()
{
	Img.style.posLeft = Img.style.posLeft - dl;

	if (Img.style.posLeft > 20) 
    	{
      		Img.style.posLeft = 0;
		if (TailleReb>50)
		{
			Delai+=10;
			Gauche();
		}
    	}
	else
	{
		window.setTimeout("Droite();", Delai);
	}	
}

function Gauche()
{
	Img.style.posLeft = Img.style.posLeft + dl;
	if (Img.style.posLeft < (0-TailleReb)) 
    	{
      		Img.style.posLeft = 0-TailleReb;
		TailleReb /= 2;
		Delai+=10;
		Droite();
    	}
	else
	{
		window.setTimeout("Gauche();", Delai);
	}	
}