﻿var bannerImg = new Array();
  // Enter the names of the images below
  bannerImg[0]="../Resources/HomePageProducts/Lighting/LightingSample1.jpg";
  bannerImg[1]="../Resources/HomePageProducts/Lighting/LightingSample2.jpg";
  bannerImg[2]="../Resources/HomePageProducts/Lighting/LightingSample3.jpg";
  bannerImg[3]="../Resources/HomePageProducts/Lighting/LightingSample4.jpg";

var newBanner = 0;
var totalBan = bannerImg.length;

function cycleBan() {
  
  if (newBanner == totalBan) {
    newBanner = 0;
  }
  try
  {
  document.banner.src=bannerImg[newBanner];
  }
  catch(error)
  {}
  newBanner++;
  setTimeout("cycleBan()", 2*1000);
}
window.onload=cycleBan;


