}
typ = new initArray(1)
typ[0]=" Let us pin ours hopes and dreams in the sky up high......"
function typewrite() {
var m = typ[current]
window.status = m.substring(0, x++) + "|"
if (x == m.length + 1) {
x = 0
current++
if (current > typ.length - 1) {
current = 0
}
setTimeout("typewrite()", speed2)
}
else {
setTimeout("typewrite()", speed)
}
}
typewrite()