<HTML>
<HEAD>
<TITLE>Demo</TITLE>
</HEAD>
<BODY BGCOLOR = "#FFFFFF">
<LAYER VISIBILITY = HIDE NAME = "splash">A Little Text</LAYER>
<SCRIPT LANGUAGE = "JavaScript">
<!--

function slideSplash() {
splashLayer.offset(0, 10);
if (splashLayer.top < 110) setTimeout('slideSplash()', 50);
else wipeSplash();// when layer has reached 
}// 110 pixels, run wipe 

function wipeSplash() {
splashLayer.clip.left += 10;
if (splashLayer.clip.left < 200) setTimeout('wipeSplash()', 50);
}

splashLayer = document.layers["splash"]; // create variable for layer
splashLayer.visibility = "show"; // show layer
slideSplash();// run sliding function

//-->
</SCRIPT>
</BODY>
</HTML>