var offButt = new Array()
offButt[1] = new Image
offButt[2] = new Image
offButt[3] = new Image
offButt[4] = new Image
offButt[5] = new Image
offButt[6] = new Image
offButt[7] = new Image
offButt[8] = new Image
offButt[9] = new Image


offButt[1].src = "about_o.gif"
offButt[2].src = "mission_o.gif"
offButt[3].src = "schedule_o.gif"
offButt[4].src = "resources_o.gif"
offButt[5].src = "audio_o.gif"
offButt[6].src = "bible_o.gif"
offButt[7].src = "prayer_o.gif"
offButt[8].src = "news_o.gif"
offButt[9].src = "contact_o.gif"



var onButt = new Array()
onButt[1] = new Image
onButt[2] = new Image
onButt[3] = new Image
onButt[4] = new Image
onButt[5] = new Image
onButt[6] = new Image
onButt[7] = new Image
onButt[8] = new Image
onButt[9] = new Image

onButt[1].src = "about.gif"
onButt[2].src = "mission.gif"
onButt[3].src = "schedule.gif"
onButt[4].src = "resources.gif"
onButt[5].src = "audio.gif"
onButt[6].src = "bible.gif"
onButt[7].src = "prayer.gif"
onButt[8].src = "news.gif"
onButt[9].src = "contact.gif"

function imageOn(i) {
document.images[i].src = onButt[i].src
}
function imageOff(i) {
document.images[i].src = offButt[i].src
}

