
<!--
var curmes = 0
var a = 0
var counter = 0
var message = new Array()

// The following are the lines to change. Remove this line when done.
message[0] = "Dharma Vana Arboretum - at peace in the lap of nature"
message[1] = "Dharma Vana Arboretum - at peace in the lap of nature"
message[2] = "Dharma Vana Arboretum - at peace in the lap of nature "
message[3] = "Dharma Vana Arboretum - at peace in the lap of nature"
message[4] = "Dharma Vana Arboretum - at peace in the lap of nature"
message[5] = "Dharma Vana Arboretum - at peace in the lap of nature"
message[6] = "Dharma Vana Arboretum - at peace in the lap of nature"
message[7] = "Dharma Vana Arboretum - at peace in the lap of nature"
message[8] = "Dharma Vana Arboretum - at peace in the lap of nature"
message[9] = "Dharma Vana Arboretum - at peace in the lap of nature"
message[10] = "Dharma Vana Arboretum - at peace in the lap of nature"
// DELETE OR ADD MORE MESSAGES HERE FOLLOWING ABOVE FORMAT

var temp = ""
function scrollit()
{
a = a + 1
check()
window.status = message[curmes].substring(0, a)
if(a == message[curmes].length + 10) 	// CHANGE 10 HERE IF REQUIRED
{
curmes = curmes + 1
a = 0
}
if(curmes > 10) 	// CHANGE 10 HERE IF REQUIRED
{
curmes = 0
}
counter = setTimeout("scrollit()", 80) // 80 IS SCROLL SPEED, HIGHERIS SLOWER, LOWER IS FASTER
}
function check()
{
if(a <= message[curmes].length)
{
if(message[curmes].substring(a, a + 1) == "")
{
a = a + 1
check()
}
}
}
// -->

