Thursday, September 01, 2005
oh well, i just did what i shouldn't have done.i went to cg, hoping that things will get better.perhaps a hope inside of me to getaway from what's going on in my life..but...there's no such things as get-away i must say.no such thing as putting all our burdens down for a moment.if there's something wrong in ur life, and u try to escape from it,u'll still get it no matter where u are.cos its something wrong with ur life, not something wrong with the situation or place...sometimes perhaps, friends are there for entertainment, a no-good-reason... perhaps a trouble too...argh, i shouldn't have said tt..all that...i cause too many thiings to happen to others... hatred, joy, jealousy, mood swings, anger.......i dont know?i need something deep... deep enough for me to drown into...and perhaps, lost for a good reason..i need....u
posted @ 18:57
_______________________________________________________________________
function initArray(n) {
this.length = n;
for (var i =1; i <= n; i++) {
this[i] = ' '
}
}
typ = new initArray(14)
typ[0]="Here comes the rain again,"
typ[1]="Falling from the stars."
typ[2]="Drenched in my pain again,"
typ[3]="Becoming who we are."
typ[4]="As my memory rest,"
typ[5]="But never forgets what I lost."
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()
//-->