// JavaScript Document
var scrollspeed=cache=1;
function initialize(){
	marqueeheight=247;
	dataobj=document.all? document.all.datacontainer : document.getElementById("datacontainer");
	dataobj.style.top=0;
	thelength=dataobj.offsetHeight;
	scrolltest();
}
function scrolltest(){
	dataobj.style.top=parseInt(dataobj.style.top)-scrollspeed;
	if (parseInt(dataobj.style.top)<thelength*(-1))
		dataobj.style.top=250;
		setTimeout("scrolltest()",65);
}


