var Scroll=""
	var wiper
	var index=0
	var space=" "
	reset1();

	function reset1()
	{
	text = new Array(6)
	var textnr=Math.round((Math.random()*6))
	text[0]="Welcome on the site of Relais d'Elle"
	text[1]="We hope this site you will persuade of the adequation between the holydays and the Provence!!"
	text[2]="The Provence with its cigadas, its sun...and its aromatic scents !!"
	text[3]="The holydays in an old Provencal Relay of  XVIIIth century"
	text[4]="Comfortably guests houses  decorated of  provençale making"
	text[5]="A scenic area single in its way "
	text[6]="Rent horses to go in the picturesque paths of Luberon "
	Scroll=text[textnr]
	index=0
	main1()
	}

	function main1()
	{
	window.status=Scroll.substring(0,index)
	index++
	if(index==(Scroll.length+4)){setTimeout('reset_clear()',300);}
	else{setTimeout('main1()',50)}
	}

	function reset_clear()
	{
	index=0
	wiper=""
	for(var a=0;a<Scroll.length;a++){wiper+=space}
	clearem()
	}
	function clearem()
	{
	window.status=wiper.substring(0,index) + "->" + Scroll.substring(index+2,Scroll.length)
	index++
	if(index==(Scroll.length+4)){reset1()}
	else{setTimeout('clearem()',50)}
	}
