﻿function loadpage() {
    index1 = 0;
    listofimages = new Array(5);
    listofimages[0] = new Image(288,50)
    listofimages[0].src = "/images/banner_national_account_1.png"
    listofimages[1] = new Image(288,50)
    listofimages[1].src = "/images/banner_national_account_2.png"
    listofimages[2] = new Image(288,50)
    listofimages[2].src = "/images/banner_national_account_3.png"
    listofimages[3] = new Image(288,50)
    listofimages[3].src = "/images/banner_national_account_4.png"
    listofimages[4] = new Image(288,50)
    listofimages[4].src = "/images/banner_national_account_5.png"

    thetimer = setTimeout("changeimage()", 2000);

}

function changeimage(){

    index1 = index1 + 1
    if (index1 == "5") {

        index1 = 0 

    }
    imagesource = listofimages[index1].src
    window.document.banner1.src = imagesource

    thetimer = setTimeout("changeimage()", 3000);

}

function changepage() {

    if (index1 == 0) {

        newlocation = "" 

    }
    else if (index1 == 1) {

        newlocation = "" 

    }
    else if (index1 == 2) {

        newlocation = ""

    }
    else if (index1 == 3) {

        newlocation = "" 

    }
    else if (index1 == 4) {

        newlocation = "" 

    }
    location = newlocation 

} 