linha = document.getElementById("anuncio").innerHTML;
dir_esq = false;
velocidade = 2;
parado = false;

texto_scroller();

function texto_scroller() {
	var anuncio_ok = false;
	anuncio_w = document.getElementById("anuncio").style.width;
	var img = "<img src=comum/imagens/espaco.jpg width="+anuncio_w+" height=0>";

	// Firefox
	if (navigator.userAgent.indexOf("Firefox")!=-1 || navigator.userAgent.indexOf("Safari")!=-1) {
		document.getElementById("anuncio").innerHTML = "<table cellspacing='0' cellpadding='0' width='100%'><tr><td nowrap='nowrap'>"+img+"<span id='texto' width='100%'>&nbsp;</span>"+img+"</td></tr></table>";
		anuncio_ok = true;
	}
	// IE
	if (navigator.userAgent.indexOf("MSIE")!=-1 && navigator.userAgent.indexOf("Opera")==-1) {
		document.getElementById("anuncio").innerHTML = "<div nowrap='nowrap' style='width:100%;'>"+img+"<span id='texto' width='100%'></span>"+img+"</div>";
		anuncio_ok = true;
	}
	if(!anuncio_ok)
		document.getElementById("anuncio").outerHTML = ""; 
	else {
		document.getElementById("anuncio").scrollLeft = dir_esq ? document.getElementById("anuncio").scrollWidth - document.getElementById("anuncio").offsetWidth : 0;
		document.getElementById("texto").innerHTML = linha;
		document.getElementById("anuncio").style.display="block";
		texto_scroller_go();
	}
}

function texto_scroller_go() {
//alert("scroll width: "+document.getElementById("anuncio").scrollWidth);
//alert("scroll left: "+document.getElementById("anuncio").scrollLeft);
//alert("offset width: "+document.getElementById("anuncio").offsetWidth);

	if(!parado) document.getElementById("anuncio").scrollLeft += velocidade * (dir_esq ? -1 : 1);
	if(dir_esq && document.getElementById("anuncio").scrollLeft <= 0)
		document.getElementById("anuncio").scrollLeft = document.getElementById("anuncio").scrollWidth - document.getElementById("anuncio").offsetWidth;
	if(!dir_esq && document.getElementById("anuncio").scrollLeft >= document.getElementById("anuncio").scrollWidth - document.getElementById("anuncio").offsetWidth)
		document.getElementById("anuncio").scrollLeft = 0;
	window.setTimeout("texto_scroller_go()", 30);
}