<!--
var current = 0
var x = 0
var y = 0

// The number 100 represents the wait in milliseconds 
// between the typing of each character in the message list.

var speed = 100

// The number 2000 represents the number of milliseconds 
// between the changing of each message (2 seconds, here). 
// Anywhere between 1500 and 5000 would be fine.

var speed2 = 200

function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
  }
}

// This is Message-Number Array

typ = new initArray(4)
typ[0]="Xinh.in - Blog Music Game Ket Ban"
typ[1]="Share Everything - With Music We Are One"

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

// The _ can be removed by removing + "_" below

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()
//-->