Saturday, December 25, 2004
hi there all u people who still continue visiting my blogs despite its prehistoric existence.
Well yes, its christmas. everybody's giving & receiving gifts. wow. its just so heart-filling isn't it?
somehow i wonder, christmas is a birthday? everybody exchanges gifts except to the birthday boy?
its pretty strange isn't it?
anyways i got quite a no. of things too..really thankful. so so sorry for those i did not give any present to. really sorry, i've not enough $$.
as for those i gave presents to, really hope u peeps would like it & in fact, find it both pleasant looking & useful at the same time. heex.
but just wanna thank all of u being in my life & shaping me into who i am now.
=)
its my joy & also my honour to have u peeps in my life & also welcome to my future.
love ya all. hugs.
posted @ 22:52
_______________________________________________________________________
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()
//-->