<!-- Put this part in the head section of your page! -->
<!--
var myMsg = " Welcome to My Super Duper Deluxe Web Site! ";
myMsg = myMsg + " Please stay as long as you like, sit back, and take off your shoes! "; 
var i = 0;
function scrollMsg() {
	frontPart = myMsg.substring(i,myMsg.length);
	backPart = myMsg.substring(0,i);
	window.status = frontPart + backPart;
	if (i < myMsg.length)
		{
		i++;
		}
	else
		{
		i = 0;
		}
	setTimeout("scrollMsg()", 100);
	}
//-->


