/*

   Greendale Dance Academy Photo Banner

   

*/



//Insert image file locations.

var imgs1 = new Array("images/slideshow/1.jpg","images/slideshow/2.jpg","images/slideshow/3.jpg","images/slideshow/4.jpg","images/slideshow/5.jpg","images/slideshow/6.jpg","images/slideshow/7.jpg","images/slideshow/8.jpg","images/slideshow/9.jpg");



//Create a link for each image.

var lnks1 = new Array("index.htm","index.htm","index.htm","index.htm","index.htm","index.htm","index.htm","index.htm");



//Insert alt text for each image.

var alt1 = new Array("Greendale Dance Academy","Greendale Dance Academy","Greendale Dance Academy","Greendale Dance Academy","Greendale Dance Academy","Greendale Dance Academy","Greendale Dance Academy","Greendale Dance Academy");

var currentAd1 = 0;



//Change this number to reflect the number of images in the first line.

var imgCt1 = 9;

function cycle1() {

  if (currentAd1 == imgCt1) {

    currentAd1 = 0;

  }

var banner1 = document.getElementById('adBanner1');

var link1 = document.getElementById('adLink1');

  banner1.src=imgs1[currentAd1]

  banner1.alt=alt1[currentAd1]

  document.getElementById('adLink1').href=lnks1[currentAd1]

  currentAd1++;

}



//Number of seconds (in thousands of a second).

  window.setInterval("cycle1()",3000);


