// image swap preload

if (document.images) {

// over array
var onImgArray = new Array
onImgArray[0] = new Image
onImgArray[1] = new Image
onImgArray[2] = new Image
onImgArray[3] = new Image
onImgArray[4] = new Image
onImgArray[5] = new Image
onImgArray[6] = new Image
onImgArray[7] = new Image
onImgArray[8] = new Image
onImgArray[9] = new Image

// paths
onImgArray[0].src = "images/navon2_04.gif"
onImgArray[1].src = "images/navon2_05.gif"
onImgArray[2].src = "images/navon2_06.gif"
onImgArray[3].src = "images/navon2_07.gif"
onImgArray[4].src = "images/navon2_08.gif"
onImgArray[5].src = "images/navon2_09.gif"
onImgArray[6].src = "images/navon2_10.gif"
onImgArray[7].src = "images/navon2_11.gif"
onImgArray[8].src = "images/navon2_12.gif"
onImgArray[9].src = "images/nav_sponsors_on.gif"


// out array
var outImgArray = new Array
outImgArray[0] = new Image
outImgArray[1] = new Image
outImgArray[2] = new Image
outImgArray[3] = new Image
outImgArray[4] = new Image
outImgArray[5] = new Image
outImgArray[6] = new Image
outImgArray[7] = new Image
outImgArray[8] = new Image
outImgArray[9] = new Image


// paths
outImgArray[0].src = "images/nav_04.gif"
outImgArray[1].src = "images/nav_05.gif"
outImgArray[2].src = "images/nav_06.gif"
outImgArray[3].src = "images/nav_07.gif"
outImgArray[4].src = "images/nav_08.gif"
outImgArray[5].src = "images/nav_09.gif"
outImgArray[6].src = "images/nav_10.gif"
outImgArray[7].src = "images/nav_11.gif"
outImgArray[8].src = "images/nav_12.gif"
outImgArray[9].src = "images/nav_sponsors.gif"

}

// swapping functions

function imgOver(i) {
	if (document.images) {
	document.images['nav' + i].src = onImgArray[i].src
	}
}

function imgOut(i) {
	if (document.images) {
	document.images['nav' + i].src = outImgArray[i].src
	}
}



//-->