oll_scroll_largeur = 275;
oll_scroll_hauteur = 72;
oll_scroll_bgcolor = '#FFFFFF';
/* Mettre ici le chemin de l'image de fond */
 oll_scroll_background = "";
/* Mettre ici le temps en secondes */
oll_scroll_pause_seconde = 4;

oll_scroll_message = new Array;

oll_scroll_message[0]='<FONT FACE="Arial, Helvetica, sans-serif" SIZE="1"><span class="TEXTEMENU"><br>Public Transport Exhibition - 8-10 June, Paris<br>ETDE Transports will be at the Public Transport Exhibition, the European mobility exhibition.<br>To visit us, <a href="http://www.transportspublics-expo.com/fr/2010/accueil/index.php" target="_blank">click here</a>. ETDE Contact: <a href="mailto:c.murzeau@etde.fr">Caroline Murzeau</a></span></FONT>';




function doll(textoll)
	{
	document.write(textoll);
	}

doll('<DIV ID=oll_scroll_relativ STYLE="position:relative;width:'+(oll_scroll_largeur+0)+';height:'+oll_scroll_hauteur+';background-color:'+oll_scroll_bgcolor+';background-image:url('+oll_scroll_background+')">');
doll('<DIV ID=oll_scroll_cadre STYLE="position:absolute;width:'+(oll_scroll_largeur-8)+';height:'+(oll_scroll_hauteur-8)+';top:0;left:10;clip:rect(0 '+(oll_scroll_largeur-8)+' '+(oll_scroll_hauteur-8)+' 0)">');
doll('<div id=oll_scroller_1 style="position:absolute;width:'+(oll_scroll_largeur-8)+';left:0;top:0;" CLASS=oll_scroll>'+oll_scroll_message[0]+'</DIV>');
doll('<div id=oll_scroller_2 style="position:absolute;width:'+(oll_scroll_largeur-8)+';left:0;top:'+oll_scroll_hauteur+';" CLASS=oll_scroll>'+oll_scroll_message[1]+'</DIV>');
doll('</DIV></DIV>');

oll_scroll_mode =1;
oll_scroll_actuel = 0;

function oll_scroll_start()
	{
	if(oll_scroll_mode == 1)
		{
		oll_scroller_haut = "oll_scroller_1";
		oll_scroller_bas = "oll_scroller_2";
		oll_scroll_mode = 0;
		}
	else
		{
		oll_scroller_bas = "oll_scroller_1";
		oll_scroller_haut = "oll_scroller_2";
		oll_scroll_mode = 1;
		}
	oll_scroll_nb_message = oll_scroll_message.length-1;
	if(oll_scroll_actuel == oll_scroll_nb_message)
		oll_scroll_suivant = 0;
	else
		oll_scroll_suivant = oll_scroll_actuel+1;
	if(document.getElementById)
		document.getElementById(oll_scroller_bas).innerHTML = oll_scroll_message[oll_scroll_suivant];
	oll_scroll_top = 0;
	if(document.getElementById)
		setTimeout("oll_scroll_action()",oll_scroll_pause_seconde*1000)
	}

function oll_scroll_action()
	{
	oll_scroll_top -= 1;
	document.getElementById(oll_scroller_haut).style.top = oll_scroll_top;
	document.getElementById(oll_scroller_bas).style.top = oll_scroll_top+oll_scroll_hauteur;
	if((oll_scroll_top+oll_scroll_hauteur) > 0)
		setTimeout("oll_scroll_action()",10)
	else
		oll_scroll_stop()
	}

function oll_scroll_stop()
	{
	oll_scroll_actuel = oll_scroll_suivant;
	oll_scroll_start()
	}

// window.onload = oll_scroll_start;
