Hi,

Try this. You'll have make some MAJOR changes to all the CSS attributes etc.. Maybe even the script, But it's a beginning.

Hope it helps.

Mohnish

<html>

<head>

<script>

function moveUp(){
if (text.style.pixelTop == -150) {
text.style.pixelTop = 100;
}
else {
text.style.pixelTop = text.style.pixelTop - 10;
}
}
setInterval("moveUp()",200)

</script>
</head>
<body background="/images/bground.gif" bgcolor="#ffffff" text="#000000" marginheight="0" topmargin="0">

<div id="container" STYLE="position:absolute; background-color:black; width:150; height:200;">

<div id="text" STYLE="position:absolute; color:white; width:150; height:150;">
oasis <br><br>
are<br><br>
the <br><br>
BEST <br><br>
</div>

</div>

</body>

</html>