﻿// Image Slideshow

var strSponsorImages = new Array();
var strSponsorImageAlt = new Array();
var strSponsorImageURL = new Array();

// Enter the names of the images below

strSponsorImages[0] = "/html/sponsor/small/dsr.jpg";
strSponsorImageAlt[0] = "Department of Sport & Recreation";
strSponsorImageURL[0] = "http://www.dsr.wa.gov.au";

strSponsorImages[1] = "/html/sponsor/small/West Australian.jpg";
strSponsorImageAlt[1] = "The West Australian";
strSponsorImageURL[1] = "http://www.thewest.com.au";

strSponsorImages[2] = "/html/sponsor/small/JASON MAZDA.jpg";
strSponsorImageAlt[2] = "Jason Mazda";
strSponsorImageURL[2] = "http://www.jasonmazda.com.au/";

strSponsorImages[3] = "/html/sponsor/small/Havilah.jpg";
strSponsorImageAlt[3] = "Havilah Legal";
strSponsorImageURL[3] = "https://havilahlegal.com.au/index.php/?affiliate=swimming_wa";

strSponsorImages[4] = "/html/sponsor/small/Hancock.jpg";
strSponsorImageAlt[4] = "Hancock Family Medical Foundation";
strSponsorImageURL[4] = "http://www.hancockprospecting.com.au/";

strSponsorImages[5] = "/html/sponsor/small/telstra.jpg";
strSponsorImageAlt[5] = "Telstra";
strSponsorImageURL[5] = "http://telstra.com/";

strSponsorImages[6] = "/html/sponsor/small/watercorporation.jpg";
strSponsorImageAlt[6] = "Water Corporation";
strSponsorImageURL[6] = "http://www.watercorporation.com.au/";

strSponsorImages[7] = "/html/sponsor/small/vorgee.jpg";
strSponsorImageAlt[7] = "Vorgee for water";
strSponsorImageURL[7] = "http://www.vorgee.com/";

strSponsorImages[8] = "/html/sponsor/small/WACancerCouncil.JPG";
strSponsorImageAlt[8] = "Cancer Council";
strSponsorImageURL[8] = "http://www.cancerwa.asn.au/";

strSponsorImages[9] = "/html/sponsor/small/healthway.jpg";
strSponsorImageAlt[9] = "Healthway";
strSponsorImageURL[9] = "http://www.healthway.wa.gov.au/";

strSponsorImages[10] = "/html/sponsor/small/motive tours.jpg";
strSponsorImageAlt[10] = "Motive Tours";
strSponsorImageURL[10] = "http://www.motivetours.com.au";

strSponsorImages[11] = "/html/sponsor/small/palmsprings.jpg";
strSponsorImageAlt[11] = "Palm Springs";
strSponsorImageURL[11] = "http://www.palmsprings.net.au";

strSponsorImages[12] = "/html/sponsor/small/sunsmart.jpg";
strSponsorImageAlt[12] = "SunSmart";
strSponsorImageURL[12] = "http://www.sunsmart.com.au/";





var lngCurrentSponsorImage = -1;
var lngTotalNumberSponsorImages = strSponsorImages.length;

function MoveToNextSponsorImage()
{
    lngCurrentSponsorImage++;
    if (lngCurrentSponsorImage == lngTotalNumberSponsorImages)
    {
        lngCurrentSponsorImage = 0;
    }
    
    imgSponsorLogo.src = strSponsorImages[lngCurrentSponsorImage];
    imgSponsorLogo.alt = strSponsorImageAlt[lngCurrentSponsorImage];
    SponsorURL.href = "/referral.asp?" + strSponsorImageURL[lngCurrentSponsorImage];

    // set the time below for length of image display in 1000 per second
    // i.e., "5*1000" is 5 seconds
    setTimeout("MoveToNextSponsorImage()", 6*1000);
}
//window.onload=MoveToNextSponsorImage;



