<!--
var width=screen.width;

function InitObject()
{
if (document.all) document.all.your_object.style.visibility = "visible";
if (document.layers) document.your_object.visibility = "show";
var timer=window.setTimeout("MoveObject()",1500);
}

// Move the image - increase the ("MoveObject()",90); to make it move slower, decrease it to move faster.
function MoveObject()
{
if (width > 0)
{
if (document.all) document.all.your_object.style.posLeft+=5;
if (document.layers) document.your_object.left+=5;
width=width-5;
var timer=window.setTimeout("MoveObject()",80);
}
else
{
if (document.all) document.all.your_object.style.visibility = "hidden";
if (document.layers) document.your_object.visibility = "hide";
}
}
//-->

