var scrollspeed=cache=1
var cimabaixo=1

function initialize(){
marqueeheight=document.all? parent.document.all.ultimas_iframe.height : parent.document.getElementById("ultimas_iframe").getAttribute("height")
dataobj=document.all? document.all.datacontainer : document.getElementById("datacontainer")
dataobj.style.top=110
thelength=dataobj.offsetHeight
setTimeout("scrolltest()", 1000)
}

function scrolltest(){
if (cimabaixo==1){
	dataobj.style.top=parseInt(dataobj.style.top)-scrollspeed;
	if (parseInt(dataobj.style.top)<thelength*(-1))
		 dataobj.style.top=110
		 setTimeout("scrolltest()",80)
}else{
	dataobj.style.top=parseInt(dataobj.style.top)+scrollspeed;
	if (parseInt(dataobj.style.top)>110)
		dataobj.style.top=thelength*(-1)
		setTimeout("scrolltest()",80)
}	
}