var marqueewidth=125
var marqueeheight=105
var speed=2
var marqueecontents='<font size="5"><a href="#"><b>Seções</b></a><br><font size="3"><a href="rota66.htm">Rota 66</a><br><font size="3"><a href="easyrider.htm">Easy Rider</a><br><font size="3"><a href="colunadomario.htm">Coluna do Mario</a> </font><br><font size="3"><a href="poli.htm">Turma da Poli</a> </font><br><font size="3"><a href="exsigla.htm">Turma da Sigla</a></font><br><font size="3"><a href="manuais.htm">Manuais</a></font><br><font size="3"><a href="smerdum.htm">Smerdum</a>  <br>'
if (document.all)
document.write('<marquee direction="up" scrollAmount='+speed+' style="width:'+marqueewidth+';height:'+marqueeheight+'">'+marqueecontents+'</marquee>')
function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",450)
intializemarquee()
}
}
function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write(marqueecontents)
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.height
scrollit()
}
function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}
window.onload=regenerate2