texteAff = "Logistique-Innovep - Le professionnel des véhicules électriques";
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);
	}
	EJSAnimEtat2()