var offImgArray = new Array()
offImgArray[0] = new Image(640,140)
offImgArray[1] = new Image(200,40)
offImgArray[2] = new Image(200,40)
offImgArray[3] = new Image(200,40)
offImgArray[4] = new Image(200,40)
offImgArray[5] = new Image(200,40)
offImgArray[6] = new Image(200,40)
offImgArray[7] = new Image(200,40)
offImgArray[8] = new Image(200,40)
offImgArray[9] = new Image(200,40)
offImgArray[10] = new Image(200,40)

// off image array -- set 'off' image path for each button
offImgArray[0].src = "/images/wvsa.jpg"
offImgArray[1].src = "/images/button-home-off.gif"
offImgArray[2].src = "/images/button-bd-off.gif"
offImgArray[3].src = "/images/button-legis-off.gif"
offImgArray[4].src = "/images/button-memorial-off.gif"
offImgArray[5].src = "/images/button-conf-off.gif"
offImgArray[6].src = "/images/button-youth-academy-off.gif"
offImgArray[7].src = "/images/button-events-off.gif"
offImgArray[8].src = "/images/button-collectibles-off.gif"
offImgArray[9].src = "/images/button-county-links-off.gif"
offImgArray[10].src = "/images/button-scholarship-off.gif"


// pre-cache all 'on' button images
var onImgArray = new Array()
onImgArray[0] = new Image(640,140)
onImgArray[1] = new Image(200,40)
onImgArray[2] = new Image(200,40)
onImgArray[3] = new Image(200,40)
onImgArray[4] = new Image(200,40)
onImgArray[5] = new Image(200,40)
onImgArray[6] = new Image(200,40)
onImgArray[7] = new Image(200,40)
onImgArray[8] = new Image(200,40)
onImgArray[9] = new Image(200,40)
onImgArray[10] = new Image(200,40)



// on image array -- set 'on' image path for each button
onImgArray[0].src = "/images/wvsa.jpg"
onImgArray[1].src = "/images/button-home-on.gif"
onImgArray[2].src = "/images/button-bd-on.gif"
onImgArray[3].src = "/images/button-legis-on.gif"
onImgArray[4].src = "/images/button-memorial-on.gif"
onImgArray[5].src = "/images/button-conf-on.gif"
onImgArray[6].src = "/images/button-youth-academy-on.gif"
onImgArray[7].src = "/images/button-events-on.gif"
onImgArray[8].src = "/images/button-collectibles-on.gif"
onImgArray[9].src = "/images/button-county-links-on.gif"
onImgArray[10].src = "/images/button-scholarship-on.gif"

function imageOn(i) {
   document.images[i].src = onImgArray[i].src
}

function imageOff(i) {
   document.images[i].src = offImgArray[i].src
}
