// JavaScript Document

function loadpage() {

    index1 = 0;
    listofimages = new Array(4);
    listofimages[0] = new Image(648,76)
    listofimages[0].src = "/new/images/OEItBanner.jpg"
    listofimages[1] = new Image(648,76)
    listofimages[1].src = "/new/images/Top Banners/AgFirstTBanner.jpg"
    listofimages[2] = new Image(648,76)
    listofimages[2].src = "/new/images/Top Banners/FITFtBanner.jpg"
    listofimages[3] = new Image(648,76)
    listofimages[3].src = "/new/images/Top Banners/GreenRiverTBanner.jpg"
	listofimages[4] = new Image(648,76)
    listofimages[4].src = "/new/images/Top Banners/FITFtBanner.jpg"
    listofimages[5] = new Image(648,76)
    listofimages[5].src = "/new/images/Top Banners/GreenRiverTBanner.jpg"

    thetimer = setTimeout("changeimage()", 4000);

}

function changeimage(){

    index1 = index1 + 1
    if (index1 == "6") {

        index1 = 0 

    }
    imagesource = listofimages[index1].src
    window.document.banner1.src = imagesource

    thetimer = setTimeout("changeimage()", 4000);

}

function changepage() {

    if (index1 == 0) {
        newlocation = "#" 
    }
    else if (index1 == 1) {
        newlocation = "#" 
    }
    else if (index1 == 2) {
        newlocation = "#" 
    }
    else if (index1 == 3) {
        newlocation = "#" 
    }
    location = newlocation 
}

