/* var cuenta=0
 velocidad=100
 var texto="  Bienvenidos a Mercavivero.com  --No importa donde estes...asumimos el compromiso por tí en Colombia...    "
 function scrolltexto () {
 window.status=texto.substring (cuenta,texto.length)+  texto.substring(0,cuenta)
 if (cuenta <texto.length){ cuenta ++ }
 else{
 cuenta=0
 }
 setTimeout("scrolltexto()",velocidad)
 }
 scrolltexto ()*/
 
var current = 0
var x = 0
var vel = 80
var vel2 = 2000
function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {this[i] = ' '}
}
typ = new initArray(5)
typ[0]="Bienvenidos a"
typ[1]="Mercavivero.com"
typ[2]="No importa donde estes..."
typ[3]="...asumimos el compromiso por tí"
typ[4]="en Colombia..."
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()", vel2)
}
else {
setTimeout("typewrite()", vel)
}
}
typewrite()


<!-- Begin
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}