<!--
var current = 0
var x = 0
var speed = 20
var speed2 = 2000
function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
 }
}
typ = new initArray(12)
typ[0]="    ******** Criadero DI BORGOSE  ********  "
typ[1]="    ******** Venta de Cachorros  ********   "
typ[2]="     ******      Mastines Napolitanos      ****** :-)  "
typ[3]="    ********       Cachorros de Mastines Napolitanos      ********"
typ[4]="    กกกกก       Mastines Napolitanos Campeones      !!!!  "
typ[5]="    ***    Criadero DI BORGOSE      *** :-)  "
typ[6]="    Mastines Napolitanos        !!!!!! "
typ[7]="    ****      Cachorros de Mastines Napolitanos     ****  "
typ[8]="    ****     Criadero DI BORGOSE     **** "
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()