
texte2 = 'Site officiel de la Commune de Mesnil Sellières                                                                                                                                              ';
x = texte2.length-1;
place = 0;
function defilStat()
	{
	if (place == texte2.length)
		place = 0;
if (place <= x)
		{
		texteDef = texte2.substring((texte2.length-(x-place)),texte2.length) + texte2.substring(0,place);
		place++;
		}
	window.status = texteDef;
	tempo22 = setTimeout("defilStat()", 100);
	}
onload = defilStat;

/*texteAff = "Site officiel de la Commune de Mesnil Sellières";
place = 0;
tempoLong = 100;
function EJSAnimEtat2()
	{
	texteTemp1 = texteAff.substring(0,place);
	texteTemp2 = texteAff.substring(place,place+1);
	texteTemp2 = texteTemp2.toUpperCase();
	texteTemp3 = texteAff.substring(place+1,texteAff.length);
	window.status = texteTemp1 + texteTemp2 + texteTemp3;
	if (place>texteAff.length)
		{
		place=0;
		tempoLong=1000;
		}
	if (place==0)
		tempoLong=100;
	place++;
	tempoAnimEtat2 = setTimeout("EJSAnimEtat2()",tempoLong)
	}
function EJSAnimEtat2Break()
	{
	window.status = "";
	clearTimeout(tempoAnimEtat2);
	}
window.onload = EJSAnimEtat2;
window.onunload = EJSAnimEtat2Break;*/
