//PLF - http://www.jejavascript.net/
function writext(texdef)
	{
	document.write(texdef);
	}

writext('<DIV ID=txt1_defil_relativ onMouseOver="txt1_defil_stop()" onMouseOut="txt1_defil_rstart()" STYLE="position:relative;width:'+txt1_defil_width +';height:'+txt1_defil_height+';background-color:'+txt1_defil_bgcolor+';background-image:url('+txt1_defil_background+')">');
writext('<DIV ID=txt1_defil_cadre STYLE="position:absolute;width:'+(txt1_defil_width -8)+';height:'+(txt1_defil_height-8)+';top:4;left:4;clip:rect(0 '+(txt1_defil_width -8)+' '+(txt1_defil_height-8)+' 0)">');
writext('<div id=txt1_defiler_1 style="position:absolute;width:'+(txt1_defil_width -8)+';left:0;top:0;" CLASS=txt1_defil >'+txt1_defil_info[0]+'</DIV>');
writext('<div id=txt1_defiler_2 style="position:absolute;width:'+(txt1_defil_width -8)+';left:0;top:'+txt1_defil_height+';" CLASS=txt1_defil >'+txt1_defil_info[1]+'</DIV>');
writext('</DIV></DIV>');

txt1_defil_1 =1;
txt1_defil_2 = 0;
stop_mouss=0;

function txt1_defil_f1()
	{
	if(txt1_defil_1 == 1) 
		{
		txt1_defil_haut = "txt1_defiler_1";
		txt1_defil_bas = "txt1_defiler_2";
		txt1_defil_1 = 0;
		}
	else
		{
		txt1_defil_bas = "txt1_defiler_1";
		txt1_defil_haut = "txt1_defiler_2";
		txt1_defil_1 = 1;
		}
	txt1_defil_nb_info = txt1_defil_info.length-1; 
	if(txt1_defil_2 == txt1_defil_nb_info)
		txt1_defil_next = 0;
	else
		txt1_defil_next = txt1_defil_2+1;
		
	if(document.getElementById)
		document.getElementById(txt1_defil_bas).innerHTML = txt1_defil_info[txt1_defil_next];
	txt1_defil_top = 0;
	if(document.getElementById)
	txt1_defil_f2 ()
	}

function txt1_defil_f2 ()
	{
if (stop_mouss == 0)
{
	txt1_defil_top -= 1;
	document.getElementById(txt1_defil_haut).style.top = txt1_defil_top;
	document.getElementById(txt1_defil_bas).style.top = txt1_defil_top+txt1_defil_height;
	if((txt1_defil_top+txt1_defil_height) > 0)
	move2=setTimeout("txt1_defil_f2 ()",40)
	else
		txt1_defil_f3()
}
else	move1=setTimeout("txt1_defil_f2 ()",1000)	
	}

function txt1_defil_f3()
	{
	txt1_defil_2 = txt1_defil_next;
	txt1_defil_f1()
	}
function txt1_defil_stop()
	{
	stop_mouss=1;
	}
function txt1_defil_rstart()
	{
	stop_mouss=0;
	}	
window.onload = txt1_defil_f1;
