/***********************************************
* Pausing updown message scroller- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

//configure the below five variables to change the style of the scroller
var scrollerdelay='6000' //delay between msg scrolls. 3000=3 seconds.
var scrollerwidth='300px'
var scrollerheight='123px'
var scrollerwidth2='650px'
var scrollerheight2='170px'

var scrollerbgcolor=''
//set below to '' if you don't wish to use a background image
var scrollerbackground=''

//configure the below variable to change the contents of the scroller
var messages=new Array()
var num_msg=0
var passage=0
var passage2=0


// AJOUT GREG
var scrollerdelay2='5000' //delay between msg scrolls. 3000=3 seconds.
var messages2=new Array()
var num_msg2=0
// FIN AJOUT


///////Do not edit pass this line///////////////////////

var ie=document.all
var dom=document.getElementById

if (messages.length>2)
i=2
else
i=0

if (messages2.length>2)
a=2
else
a=0


function move10(whichdiv)
{
	tdiv20=eval(whichdiv)
	if (parseInt(tdiv20.style.top)>0&&parseInt(tdiv20.style.top)<=5){
		tdiv20.style.top=0+"px"
		setTimeout("move10(tdiv20)",scrollerdelay2)
		setTimeout("move20(second2_obj2)",scrollerdelay2)
	return
}

if (parseInt(tdiv20.style.top)>=tdiv20.offsetHeight*-1){
tdiv20.style.top=parseInt(tdiv20.style.top)-5+"px"
setTimeout("move10(tdiv20)",50)
//if(passage2==0 && (messages2.length %2)==0) a=a-1
//if(passage2==0 && (((messages2.length %2)==1)&& messages2.length>4)){ a=a-2;passage2++;}
//if(passage2==0 && (((messages2.length %2)==0) && messages2.length<5)){ a=a-1;passage2++;}
}
else{
if(a==1 && messages2.length==2) a=0
tdiv20.style.top=parseInt(scrollerheight2)+"px"
tdiv20.innerHTML=messages2[a]
if (a==messages2.length-1)
a=0
else
a++
}
}



function move20(whichdiv){
tdiv21=eval(whichdiv)
if (parseInt(tdiv21.style.top)>0&&parseInt(tdiv21.style.top)<=5){
tdiv21.style.top=0+"px"
setTimeout("move20(tdiv21)",scrollerdelay2)
setTimeout("move10(first2_obj2)",scrollerdelay2)
return
}

if (parseInt(tdiv21.style.top)>=tdiv21.offsetHeight*-1){
tdiv21.style.top=parseInt(tdiv21.style.top)-5+"px"
setTimeout("move20(second2_obj2)",50)
}
else{
tdiv21.style.top=parseInt(scrollerheight2)+"px"
tdiv21.innerHTML=messages2[a]
if (a==messages2.length-1)
a=0
else
a++
}
}

function startscroll2(){
first2_obj2=ie? first22 : document.getElementById("first22")
second2_obj2=ie? second22 : document.getElementById("second22")
move10(first2_obj2)
second2_obj2.style.top=scrollerheight2
second2_obj2.style.visibility='visible'
}

function addMessage2(txt){
	messages2[num_msg2]=txt;
	num_msg2++;
}

function scrollingdiv_init2(){
	if (ie||dom){
	document.writeln('<div id="main22" style="margin:0px; position:relative;width:'+scrollerwidth2+';height:'+scrollerheight2+';overflow:hidden;background-color:'+scrollerbgcolor+' ;background-image:url('+scrollerbackground+')">')
	document.writeln('<div style="position:absolute;width:'+scrollerwidth2+';height:'+scrollerheight2+';clip:rect(0 '+scrollerwidth2+' '+scrollerheight2+' 0);left:0px;top:0px">')
	document.writeln('<div id="first22" style="position:absolute;width:'+scrollerwidth2+';left:0px;top:1px;">')
	document.write(messages2[0])
	document.writeln('</div>')
	document.writeln('<div id="second22" style="position:absolute;width:'+scrollerwidth2+';left:0px;top:0px;visibility:hidden">')
	document.write(messages2[dyndetermine=(messages2.length==1)? 0 : 1])
	document.writeln('</div>')
	document.writeln('</div>')
	document.writeln('</div>')
	}

	if(messages2.length>1) {
		if (window.addEventListener)
		window.addEventListener("load", startscroll2, false)
		else if (window.attachEvent)
		window.attachEvent("onload", startscroll2)
		else if (ie||dom)
		window.onload=startscroll2
	}
}

// FIN AJOUT


function move(whichdiv){
tdiv=eval(whichdiv)
if (parseInt(tdiv.style.top)>0&&parseInt(tdiv.style.top)<=5){
tdiv.style.top=0+"px"
setTimeout("move(tdiv)",scrollerdelay)
setTimeout("move2(second2_obj)",scrollerdelay)
return
}
if (parseInt(tdiv.style.top)>=tdiv.offsetHeight*-1){
tdiv.style.top=parseInt(tdiv.style.top)-5+"px"
setTimeout("move(tdiv)",50)
//if(passage==0 && (((messages.length %2)==0)||messages.length>4)) i=i-1
//if(passage==0 && (((messages.length %2)==1)&& messages.length>4)){ i=i-2;passage++;}
//if(passage==0 && (((messages.length %2)==0) && messages.length<5)){ i=i-1;passage++;}

//passage++
}
else{
tdiv.style.top=parseInt(scrollerheight)+"px"
tdiv.innerHTML=messages[i]
if (i==messages.length-1)
i=0
else
i++
}
}

function move2(whichdiv){
tdiv2=eval(whichdiv)
if (parseInt(tdiv2.style.top)>0&&parseInt(tdiv2.style.top)<=5){
tdiv2.style.top=0+"px"
setTimeout("move2(tdiv2)",scrollerdelay)
setTimeout("move(first2_obj)",scrollerdelay)
return
}
if (parseInt(tdiv2.style.top)>=tdiv2.offsetHeight*-1){
tdiv2.style.top=parseInt(tdiv2.style.top)-5+"px"
setTimeout("move2(second2_obj)",50)
}
else{
//if(i==1 && messages.length==2) i=0		
tdiv2.style.top=parseInt(scrollerheight)+"px"
tdiv2.innerHTML=messages[i]
if (i==messages.length-1)
i=0
else
i++
}
}

function startscroll(){
first2_obj=ie? first2 : document.getElementById("first2")
second2_obj=ie? second2 : document.getElementById("second2")
move(first2_obj)
second2_obj.style.top=scrollerheight
second2_obj.style.visibility='visible'
}

function addMessage(txt){
	messages[num_msg]=txt;
	num_msg++;
}

function scrollingdiv_init(){
	if (ie||dom){
	document.writeln('<div id="main2" style="margin:0px; position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hidden;background-color:'+scrollerbgcolor+' ;background-image:url('+scrollerbackground+')">')
	document.writeln('<div style="position:absolute;width:'+scrollerwidth+';height:'+scrollerheight+';clip:rect(0 '+scrollerwidth+' '+scrollerheight+' 0);left:0px;top:0px">')
	document.writeln('<div id="first2" style="position:absolute;width:'+scrollerwidth+';left:0px;top:1px;">')
	document.write(messages[0])
	document.writeln('</div>')
	document.writeln('<div id="second2" style="position:absolute;width:'+scrollerwidth+';left:0px;top:0px;visibility:hidden">')
	document.write(messages[dyndetermine=(messages.length==1)? 0 : 1])
	document.writeln('</div>')
	document.writeln('</div>')
	document.writeln('</div>')
	}
	if(messages.length>1) {
		if (window.addEventListener)
		window.addEventListener("load", startscroll, false)
		else if (window.attachEvent)
		window.attachEvent("onload", startscroll)
		else if (ie||dom)
		window.onload=startscroll
	}
}
