Thursday, September 01, 2005
Nobody's Home I couldn't tell you why she felt that way,She felt it everyday.And I couldn't help her, I just watched her make the same mistakes again.What's wrong, what's wrong now?Too many, too many problems.Don't know where she belongs, where she belongs.She wants to go home, but nobody's home.It's where she lies, broken inside.With no place to go, no place to go to dry her eyes.Broken inside.Open your eyes and look outside, find the reasons why.You've been rejected, and now you can't find what you left behind.Be strong, be strong now.Too many, too many problems.Don't know where she belongs, where she belongs.CHORUSHer feelings she hides.Her dreams she can't find.She's losing her mind.She's fallen behind.She can't find her place.She's losing her faith.She's fallen from grace.She's all over the place.Yeah,ohCHORUSShe's lost inside, lost inside...oh oh yeahShe's lost inside, lost inside...oh oh yeah
posted @ 12: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()
//-->