var marqueeWidth="240px"
var marqueeHeight="400px"
var scrollSpeed = 2

var actualHeight=''
var marqueeObject;


function populate()
{
	marqueeObject=document.getElementById("cressetMarquee")
	marqueeObject.style.top=parseInt(marqueeHeight)+8+"px"
	marqueeObject.innerHTML=marqueeContent
	actualHeight=document.getElementById("temp").offsetHeight
	setInterval("scrollMarquee()",40)
}

function scrollMarquee()
{
   if (parseInt(marqueeObject.style.top)>(actualHeight*(-1)+1))
   {
      marqueeObject.style.top=parseInt(marqueeObject.style.top)-scrollSpeed+"px"
   }
   else
   {
      marqueeObject.style.top=parseInt(marqueeHeight)+(1/2)+"px"
   }
}


