function loadpage() {

    index1 = 0;
    listofimages = new Array(10);
    listofimages[0] = new Image(215,80)
    listofimages[0].src = "images/ads/adregistration.gif"
    listofimages[1] = new Image(215,80)
    listofimages[1].src = "images/ads/wifilogo.jpg"
    listofimages[2] = new Image(215,80)
    listofimages[2].src = "images/ads/flyingburrito.gif"
	listofimages[3] = new Image(215,80)
    listofimages[3].src = "images/ads/ad2.jpg"
    listofimages[4] = new Image(215,80)
    listofimages[4].src = "images/ads/freel.gif"
    listofimages[5] = new Image(215,80)
    listofimages[5].src = "images/ads/oscars.gif"
    listofimages[6] = new Image(215,80)
    listofimages[6].src = "images/ads/roberson.gif"
    listofimages[7] = new Image(215,80)
    listofimages[7].src = "images/ads/jacksonville.gif"	
    listofimages[8] = new Image(215,80)
    listofimages[8].src = "images/ads/bitburger.jpg"	
    listofimages[9] = new Image(215,80)
    listofimages[9].src = "images/ads/beerutopia.png"	
    listofimages[10] = new Image(215,80)
    listofimages[10].src = "images/ads/weremember.jpg"	
    listofimages[11] = new Image(215,80)
    listofimages[11].src = "images/ads/crawsforpaws.jpg"	
	thetimer = setTimeout("changeimage()", 2000);
}

function changeimage(){
    index1 = index1 + 1
    if (index1 == "12") {
        index1 = 0 
    }
    imagesource = listofimages[index1].src
    window.document.banner1.src = imagesource
    thetimer = setTimeout("changeimage()", 4000);
}

function changepage() {
    if (index1 == 0) {
        newlocation = "http://www.arkansascentralsoccer.com/section.asp?id=10" 
    }
    else if (index1 == 1) {
        newlocation = "http://www.wifidesigns.net"
    }
    else if (index1 == 2) {
        newlocation = "http://www.joewittkop.com/FlyingBurritoCo/index.html" 
    }
    else if (index1 == 3) {
        newlocation = "http://www.arkansascentralsoccer.com/section.asp?id=31" 
    }
    else if (index1 == 4) {
        newlocation = "http://www.arkansascentralsoccer.com/section.asp?id=21" 
    }	
    else if (index1 == 5) {
        newlocation = "http://www.arkansascentralsoccer.com/section.asp?id=21" 
    }	
    else if (index1 == 6) {
        newlocation = "http://www.RobersonInsurance.com" 
    }	
    else if (index1 == 7) {
        newlocation = "http://www.arkansascentralsoccer.com/section.asp?id=21" 
    }	
    else if (index1 == 8) {
    newlocation = "http://www.bitburger.com/" 
    }
    else if (index1 == 9) {
    newlocation = "http://www.beerutopia.com/" 
    }	
    else if (index1 == 10) {
    newlocation = "http://www.theseptemberfund.org/" 
    }	
	else if (index1 == 11) {
    newlocation = "http://www.crawsforpaws.com/" 
    }	
    window.open(newlocation)
}   