﻿
var images = new Array(); 
var imgLinks = new Array();
var dispTime = new Array();
var imgcnt = 0; 
var thisimg = 0;

//****** image size for the banner is  400 by 90 pixels
//****** image url must be placed in the folder /PoolWaterTest/Ads/Adx.JPG or Adx.GIF
//****** image link must have a full path as http://www.poolwatertesting/Products/11-granular-chlorine-10kg.aspx
//****** display times are in seconds that is 1000 = 1sec

//**************Only change or add items from below this line *****************************

dispTime[imgcnt] = 3000; // = 10secs
images[imgcnt] = "http://www.poolwatertesting.com.au/PoolWaterTest/Ads/Ad0.JPG";


//**************Do not change anything below this line *****************************







function rotate()
{
    if (document.images)
    {
        thisimg++;
        if (thisimg >= imgcnt) thisimg = 0;
        document.rollimg.src = images[thisimg];
        setTimeout("rotate();",dispTime[thisimg]);
    }
}
setTimeout("rotate();",5000); 

