//<SCRIPT LANGUAGE="JavaScript">
Imgs = new Array (
"FyV/001.jpg",
"FyV/002.jpg",
"FyV/003.jpg",
"FyV/004.jpg",
"FyV/005.jpg",
"FyV/006.jpg",
"FyV/007.jpg",
"FyV/008.jpg",
"FyV/009.jpg",
"FyV/010.jpg",
"FyV/014.jpg",
"FyV/015.jpg",
"FyV/016.jpg",
"FyV/017.jpg",
"FyV/018.jpg",
"FyV/019.jpg",
"FyV/020.jpg",
"FyV/021.jpg",
"FyV/022.jpg",
"FyV/027.jpg",
"FyV/028.jpg",
"FyV/029.jpg",
"FyV/030.jpg",
"FyV/031.jpg",
"FyV/033.jpg",
"FyV/035.jpg",
"FyV/038.jpg",
"FyV/039.jpg",
"FyV/040.jpg",
"FyV/041.jpg",
"FyV/042.jpg",
"FyV/043.jpg",
"FyV/044.jpg",
"FyV/045.jpg",
"FyV/046.jpg",
"FyV/047.jpg",
"FyV/050.jpg",
"FyV/051.jpg",
"FyV/052.jpg",
"FyV/054.jpg",
"FyV/055.jpg",
"FyV/057.jpg",
"FyV/058.jpg",
"FyV/059.jpg",
"FyV/061.jpg",
"FyV/062.jpg",
"FyV/063.jpg",
"FyV/064.jpg",
"FyV/065.jpg",
"FyV/067.jpg",
"FyV/068.jpg",
"FyV/069.jpg",
"FyV/070.jpg",
"FyV/071.jpg",
"FyV/073.jpg",
"FyV/074.jpg",
"FyV/075.jpg",
"FyV/076.jpg",
"FyV/078.jpg",
"FyV/079.jpg",
"FyV/080.jpg",
"FyV/081.jpg",
"FyV/082.jpg"
);
Pies = new Array (
"",
"",
"Carlos Moro etc…",
"Carlos Moro etc…",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"Hortensia Ladevece (Escultura de los galardones)con Mónica Muñoz y Carlos Herrera",
"",
"Esperanza Aguirre, Carlos Herrera y Mónica Muñoz",
"",
"",
"",
"",
"",
"",
"",
"Esperanza Aguirre disfrutando del acto",
"",
"",
"D. Jusep Puxeu Secretario de Estado de Medio Rural y Agua",
"",
"A. Aznar (Marqués de Riscal) y F. Solís (Bodegas Félix Solís)",
"",
"Javier Ruiz de Galarreta (ARAEX)",
"",
"Carlos Moro (Bodegas Emilio Moro) y Agustín Santolaya (Bodegas Roda)",
"",
"Agustín Ramos Varillas (Director Corporativo de Carrefour) y Juan Antonio Germán (Director General Mercadona)",
"",
"",
"Andrés Ardid (Lavinia) y Ángel Barutell (El Corte Inglés)",
"Pepe García Carrión",
"",
"",
"Rafael Navarro (Distribuciones Navarro)  y Victoria Ordoñez (Orowines)",
"Miguel Torres (Bodegas Torres) y Josep Puxeu",
"",
"",
"",
"Esperanza Aguirre y Fernando Remírez de Gamuza",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
""
);
var ImgNum = 0;
var ImgLon = Imgs.length - 1;

var pausa = 3000;

var bloqueo = false;
var andando;

function chgImg(direccion) {
  if (document.images) {
    ImgNum = ImgNum + direccion;
    if (ImgNum > ImgLon) {
      ImgNum = 0;
      }
    if (ImgNum < 0) {
      ImgNum = ImgLon;
      }
document.carrusel.src = Imgs[ImgNum];
document.getElementById("Pie").innerHTML = Pies[ImgNum];
if (Pies[ImgNum] == "") {document.getElementById("Pie").innerHTML = "<br>"}

   }
}

function auto() {
if (bloqueo == true) {
bloqueo = false;
window.clearInterval(andando);
}
else if (bloqueo == false) {
bloqueo = true;
andando = setInterval("chgImg(1)", pausa);
}
}
//</script>





