

texte2 = 'Les Stars du X sont sur www.chez.com/starsdux, Laure Sainclair, Sylvia Saint, Jenna Jameson, Lea Martini, Tania Russof.........';
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()", 200);
	}
