message     = "Welcome to DouglasKlugh.com ^" +
              "Please contact me with any questions or comments. ^";

txt         = "";
scrollSpeed = 25;
lineDelay   = 6000;

function scrollStatusMsg(pos)
{	if (message.charAt(pos) != '^')
	{	txt    = txt + message.charAt(pos)
		window.status = txt
		pauze  = scrollSpeed}
	else
	{	pauze = lineDelay
		txt   = ""
		if (pos == message.length-1)
			pos = -1}
	pos++
	setTimeout("scrollStatusMsg('"+pos+"')",pauze);}


scrollStatusMsg(0);

