<!--
var current = 0
var x = 0
var speed = 10
var speed2 = 3000
function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
 }
}
typ = new initArray(12)
typ[0]="  Decoracion de Interiores  Diseρo de Interiores "
typ[1]="  Alfombras para Dormitorios  Cortinas para Dormitorios "
typ[2]="  Decoracion de Casas  Decoracion de Quinchos "
typ[3]="  Venta de Pisos Flotantes  Colocacion de Pisos Flotantes "
typ[4]="  Cortinas a Medida  Muebles a Medida "
typ[5]="  Sillones Esquineros - Venta de Sillones"
typ[6]="  Flotantes para Dormitorios  Flotantes para Living Comedor "
typ[7]="  Precios de Sillones  Precios de Alfombras "
typ[8]="  Decorador de Casas  Decorador de Interiores "
typ[9]="  Cortinas de Tela  Cortinas de Oficinas "
typ[10]="  Venta Pisos de Madera - Precios Pisos de Madera "
typ[11]="  Muebles a Medida - Sillones a Medida "
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()
