<!--

var current = 0
var x = 0
var speed = 200
var speed2 = 2000

var type = new Array(4)
type[0]="網站空間不知是到期還是掛掉了"
type[1]="可憐的蘋果妹妹 日也操、暝也操，實在沒時間做一個新的"
type[2]="這是一小時中趕工出來的網站，雖然真的很簡陋，自己實在不怎麼滿意"
type[3]="但還是請大家委屈點，先暫時這樣吧 ^^||　　或許......有空的時候會改？"

function typewrite() {
var m = type[current]

window.status = m.substring(0, x) + "_"
x = x+1

if (x == m.length + 1) {
x = 0
current = current+1

if (current == type.length) {
current = 0
}

setTimeout("typewrite()", speed2)
}

else {
setTimeout("typewrite()", speed)
}
}

typewrite()

//-->
