<!--
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]=" •••   ********   SillonesAlquiler.com   ********  "
typ[1]=" •••  Bulnes 2178 - Buenos Aires - Argentina  "
typ[2]=" •••    ******    Telefono: 4822-6373    ******  "
typ[3]=" •••   ********     Alquiler de Sillones para Eventos    ********"
typ[4]=" •••    ********    Alquiler de Muebles para Fiestas     ********"
typ[5]=" •••   ***     SillonesAlquiler.com     *** "
typ[6]=" •••        Telefono: 4822-6373      "
typ[7]=" •••   ********  Sillones - Puff - Fiacas - Banquetas - Mesas - Sillas   ********  "
typ[8]=" •••   ****    Alquiler de Sillones para Fiestas    **** "
typ[9]=" •••   *****     Alquiler deMobiliario para Eventos  ***** "
typ[10]=" •••   ****      Telefono: 4822-6373    ****"
typ[11]=" •••  *****      Bulnes 2178 - Buenos Aires - Argentina     ***** "
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()