  function luces(){
    obj = document.getElementsByTagName('span');
    momentoActual = new Date();
    eje = momentoActual.getSeconds() % 2;
    if(eje==0){
      for(i=0;i<obj.length;i++){
        if(obj[i].lang=="es")
          obj[i].className="luz2";
        if(obj[i].lang=="en")
          obj[i].className="luz1";
      }
    }
    if(eje==1){
      for(i=0;i<obj.length;i++){
        if(obj[i].lang=="es")
        obj[i].className="luz1";
        if(obj[i].lang=="en")
        obj[i].className="luz2";
      }
    }
    setTimeout("luces()",1000);
    return true;
  }