    var nodos = new Array();
    var rutas = new Array();
    
    nodos[0]='http://www.tumeves.com';
    rutas[0]="/vv/";

    nodos[1]="http://pruebas.tumeves.com";
    rutas[1]="/vv/";

    nodos[2]="http://madrid.tumeves.com";
    rutas[2]="/vv/";

    nodos[3]="http://alicante.tumeves.com";
    rutas[3]="/vv/";

function nodo()
   {
    n=nodos.length;
    hoy = new Date();
    segundos=hoy.getSeconds();
    indice=(segundos % n);
    cadena=nodos[indice] + rutas[indice];
    return cadena;
   }

function servidor()
   {
    n=nodos.length;
    hoy = new Date();
    segundos=hoy.getSeconds();
    indice=(segundos % n);
    cadena=nodos[indice];
    return cadena;
   }
