//Specify the marquee's width (in pixels)
var marqueewidth=100
//Specify the marquee's height
var marqueeheight=30
//Specify the marquee's scroll speed (larger is faster)
var speed=1
//Specify the marquee contents

var marqueecontents = '<a href="#" target="central" style="text-decoration:none"><font color="#FFFFFF" size="1" face="Arial"><strong>23 a 26/11 - III Festival Puro Sangue Lusitano - Clube Hípico Santo Amaro - São Paulo - SP</strong></font></a><br><br><br><br><a href="#" target="central" style="text-decoration:none"><font color="#FFFFFF" size="1" face="Arial"><strong>24/11 - (12:00h)  Leilão Oficial - Clube Hípico Santo Amaro</strong></font></a><br><br><br><br>'
//var marqueecontents = '<font color="#FFFFFF" size="1" face="Arial"><strong>Zf do Brasil bate Record com mais de 11 mil eixos agrícolas produzidos<br><br><br><br>Transmissão ZF equipa novo caminhão semipesado da DaimlerChrysler</strong></font>'

if (document.all)
document.write('<marquee direction="up" scrollAmount='+speed+' style="width:100;height:65px">'+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
