var scrollspeed=1

function initialize(){
marqueeheight=document.all? parent.document.all.notizie.height : parent.document.getElementById("notizie").getAttribute("height")
//marqueeheight=parent.document.getElementById("notizie").getAttribute("height")
dataobj=document.all? document.all.datacontainer : document.getElementById("datacontainer")
//dataobj= document.getElementById("datacontainer")
dataobj.style.top=5
thelength=dataobj.offsetHeight
thelength < 10 ? thelength = 1000 : thelength = dataobj.offsetHeight
scrolltest()
}

function scrolltest(){
dataobj.style.top=parseInt(dataobj.style.top)-scrollspeed
if (parseInt(dataobj.style.top)<thelength*(-1))
dataobj.style.top=5
setTimeout("scrolltest()",50)
}




