
// personnalisez ici ***********
var marqueewidth=140
var marqueeheight=140
var speed=2
var marqueecontents='<center><h3><font color=\'EFEDDE\'> Au Coeur du<br>Developpement,<br><br>La BONNE<br>GOUVERNANCE </font></h3></center>'
//*****************************

var currentspeed=speed

if (document.all) document.write('<marquee onmouseover="stop()" onmouseout="start()" direction="up" scrollAmount='+currentspeed+' style="width: '+marqueewidth+'px; height: '+marqueeheight+'px">'+marqueecontents+'</marquee>')

function start()
{
    currentspeed=speed
}

function stop()
{
    currentspeed=0
}


