// JavaScript Document var displayTime, speed, wait, banner1, banner2, bannerIndex, bannerLocations; function initVar() { displayTime = 15; // The amount of time each banner will be displayed in seconds. speed = 5; // The speed at which the banners is moved (1 - 10, anything above 5 is not recommended). wait = true; banner1 = document.getElementById("banner1"); banner2 = document.getElementById("banner2"); banner1.style.left = 0; banner2.style.left = 0; bannerIndex = 1; bannerLocations = new Array("images/banner//boys-dancing.jpg","images/banner//autos-cuba.jpg","images/banner//baila-cuba.jpg","images/banner//index.jpg","images/banner//lecciones-baile.jpg","images/banner//salsa-paradiso.jpg","images/banner//fiesta-solteros.jpg","images/banner//casas-cuba.jpg"); bannerURLs = new Array("boys-dancing.php?lan=","autos-cuba.php?lan=","baila-cuba.php?lan=","index.php?lan=","lecciones-baile.php?lan=","salsa-paradiso.php?lan=","fiesta-solteros.php?lan=","casas-cuba.php?lan="); } function moveBanner(){ if(!wait){ banner1.style.left = 0; if(bannerIndex < (bannerLocations.length - 1)){ bannerIndex++; } else { bannerIndex=0; } //bannerIndex = (bannerIndex < (bannerLocations.length - 1)) ? ++bannerIndex :0; banner1.src = bannerLocations[bannerIndex]; link1.href = bannerURLs[bannerIndex]; wait = true; setTimeout("moveBanner()",100); } else { wait = false; setTimeout("moveBanner()", displayTime * 1000); } }