unconditional love.<33 function initArray() { this.length = initArray.arguments.length; for (var i = 0; i < this.length; i++) { this[i] = initArray.arguments[i]; } } var text = new initArray (" Too many times, you have been high", "too many times, you ran away, in need to cry ", "too many times, your body lies awake ", "too many times, these pills you take", "too many times, you woken up depressed" , "too many times, you put your life to the test", "too many times, you have taken this trip", "too many times, you have slipped", "too many times, your body cant take", "too many times, you made a mistake", "too many times, you havent realized", "too many times, you mind became paralyzed..."); var speed = 40; var speed2 = 900; var whereat = 0; var whichone = 0; function waveb() { var befor = text[whichone].substring(0,whereat); var wave = text[whichone].substring(whereat,whereat+1).toUpperCase(); window.status = befor + wave; if (whereat == text[whichone].length) { whereat = 0; ++whichone; if (whichone == text.length) whichone = 0; setTimeout("waveb()",speed2); } else { whereat++; setTimeout("waveb()",speed); } } waveb(); //-->