function nuevaImagen(arg) {
  if (document.images) {
    res = new Image();
    res.src = arg;
    return res;
  }
}

function cambiarImagenes(nombre,imagen) {
  if (document.images && (precarga == true)) {
    document[nombre].src = imagen;
  }
}

var precarga = false;
function precargaImagenes() {
  if (document.images) {
inicio2 = nuevaImagen("web/inicio2.gif");
boletinescuela2 = nuevaImagen("web/boletinescuela2.gif");
cronicas2 = nuevaImagen("web/cronicas2.gif");
cuerpotecnico2 = nuevaImagen("web/cuerpotecnico2.gif");
entrenamientos2 = nuevaImagen("web/entrenamientos2.gif");
formulario2 = nuevaImagen("web/formulario2.gif");
foroabierto2 = nuevaImagen("web/foroabierto2.gif");
laentidad2 = nuevaImagen("web/laentidad2.gif");
loscampos2 = nuevaImagen("web/loscampos2.gif");
losequipos2 = nuevaImagen("web/losequipos2.gif");
normativa2 = nuevaImagen("web/normativa2.gif");
noticias2 = nuevaImagen("web/noticias2.gif");
patrocinadores2 = nuevaImagen("web/patrocinadores2.gif");
     precarga = true;
  }
}
