barMsg="Welcome to the More Black Than Purple Web Site!       Please sign our Guestbook!       "

x=0
function scrollMsg() 
	{
	beginningPart=barMsg.substring(x,barMsg.length)
	endPart=barMsg.substring(0,x)
	window.status=beginningPart+endPart
	if (x < barMsg.length)
		{x++}
		else {
		x=0 }
	setTimeout("scrollMsg()",150)
	}
	