var msg = "                                                   Dick Becker's Radio LIVE over the Internet            Listen to Radio While You Browse!!                                                                                      "
var delay =150
var timerId

function statbar() {
	window.status = msg
	// shift first character of msg to end of msg
	msg = msg.substring (1, msg.length) + msg.substring (0, 1)
	// recursive call to this function
		timerId = setTimeout("statbar()", delay)

}

