﻿window.onload = rotate;

var thisAd = 0;

function rotate() {
var adImages = new Array ("images/home/lda.jpg",
"images/home/languedoc-landscape-01.jpg",
"images/home/cadaques.jpg",
"images/home/port-davall.jpg",
"images/home/roofs-of-paziols.jpg",
"images/home/lda.jpg",
"images/home/tautavel-gorge.jpg",
"images/home/poppies-and-vines.jpg",
"images/home/languedoc-landscape-impressions.jpg",
"images/home/collioure.jpg",
"images/home/lda.jpg",
"images/home/chateau-honeysuckle.jpg",
"images/home/spring-colours-in-languedoc.jpg",
"images/home/canet-plage.jpg",
"images/home/lda.jpg",
"images/home/belltower-and-bay-collioure.jpg",
"images/home/spring-mimosa.jpg",
"images/home/collioure-poster.jpg",
"images/home/broom-and-poppies-01.jpg");

thisAd++;
if (thisAd == adImages.length) {
thisAd = 0;
}

document.getElementById("indexpic").src = adImages[thisAd];

setTimeout(rotate, 4 * 1000);
}

