// JavaScript Document
iens6=document.all||document.getElementById
ns4=document.layers
var speed=5

function moveright(){
if (iens6&&parseInt(crossobj.style.left)>=(contentwidth*(-1)+560))
crossobj.style.left=parseInt(crossobj.style.left)-speed+"px"
else if (ns4&&crossobj.left>=(contentwidth*(-1)+560))
crossobj.left-=speed
moverightvar=setTimeout("moveright()",20)
}

function moveleft(){
if (iens6&&parseInt(crossobj.style.left)<=30)
crossobj.style.left=parseInt(crossobj.style.left)+speed+"px"
else if (ns4&&crossobj.left<=30)
crossobj.left+=speed
moveleftvar=setTimeout("moveleft()",20)

}

function getcontent_width(){
if (iens6)
contentwidth=crossobj.offsetWidth
else if (ns4)
document.nscontainer.document.nscontent.visibility="show"
}

window.onload=getcontent_width