var id,position=0,scorri=true;
function scorrevole() {
	var i,k,msg="- - - Inserisci il tuo indirizzo email per ricevere ogni mese offerte e notizie - - -";
	if(scorri) {
		k=(100/msg.length)+1;
		for(i=0;i<=k;i++) msg+=" "+msg;
		document.form_newsletter.email.value=msg.substring(position,position+100);
		if(position++==100) position=0;
		id=setTimeout("scorrevole()",100);
	}
}