// 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
onImgArray[10] = new Image
onImgArray[11] = new Image
onImgArray[12] = new Image
onImgArray[13] = new Image
onImgArray[14] = new Image
onImgArray[15] = new Image
onImgArray[16] = new Image
onImgArray[17] = new Image
onImgArray[18] = new Image
onImgArray[19] = new Image
onImgArray[20] = new Image
onImgArray[21] = new Image
onImgArray[22] = new Image
onImgArray[23] = new Image
onImgArray[24] = new Image
onImgArray[25] = new Image


// paths
onImgArray[0].src = "images/loancenter_on.gif"
onImgArray[1].src = "images/products_on.gif"
onImgArray[2].src = "images/about_on.gif"
onImgArray[3].src = "images/resources_on.gif"
onImgArray[4].src = "images/careers_on.gif"
onImgArray[5].src = "images/hints_on.gif"
onImgArray[6].src = "images/investments_on.gif"
onImgArray[7].src = "images/mortgages_on.gif"
onImgArray[8].src = "images/retirement_on.gif"
onImgArray[9].src = "images/insurance_on.gif"
onImgArray[10].src = "images/home_on.gif"
onImgArray[11].src = "images/strategic_alliance_on.gif"
onImgArray[12].src = "images/apply_now_on.gif"
onImgArray[13].src = "images/docsneeded_on.gif"
onImgArray[14].src = "images/freeequity_on.gif"
onImgArray[15].src = "images/faq_on.gif"
onImgArray[16].src = "images/pre-approvals_on.gif"
onImgArray[17].src = "images/BLDR_LOGIN_on.gif"
onImgArray[18].src = "images/BLDR_REG_on.gif"
onImgArray[19].src = "images/contact_us_on.gif"
onImgArray[20].src = "images/myaccount_on.gif"
onImgArray[21].src = "images/apply_now_left_on.gif"
onImgArray[22].src = "images/pre-approval_left_on.gif"
onImgArray[23].src = "images/calculators_on.gif"
onImgArray[24].src = "images/bad_credit_on.gif"
onImgArray[25].src = "images/LO_LOGIN_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
outImgArray[10] = new Image
outImgArray[11] = new Image
outImgArray[12] = new Image
outImgArray[13] = new Image
outImgArray[14] = new Image
outImgArray[15] = new Image
outImgArray[16] = new Image
outImgArray[17] = new Image
outImgArray[18] = new Image
outImgArray[19] = new Image
outImgArray[20] = new Image
outImgArray[21] = new Image
outImgArray[22] = new Image
outImgArray[23] = new Image
outImgArray[24] = new Image
outImgArray[25] = new Image


// paths
outImgArray[0].src = "images/loancenter.gif"
outImgArray[1].src = "images/products.gif"
outImgArray[2].src = "images/about.gif"
outImgArray[3].src = "images/resources.gif"
outImgArray[4].src = "images/careers.gif"
outImgArray[5].src = "images/hints.gif"
outImgArray[6].src = "images/investments.gif"
outImgArray[7].src = "images/mortgages.gif"
outImgArray[8].src = "images/retirement.gif"
outImgArray[9].src = "images/insurance.gif"
outImgArray[10].src = "images/home.gif"
outImgArray[11].src = "images/strategic_alliance.gif"
outImgArray[12].src = "images/apply_now.gif"
outImgArray[13].src = "images/docsneeded.gif"
outImgArray[14].src = "images/freeequity.gif"
outImgArray[15].src = "images/faq.gif"
outImgArray[16].src = "images/pre-approvals.gif"
outImgArray[17].src = "images/BLDR_LOGIN.gif"
outImgArray[18].src = "images/BLDR_REG.gif"
outImgArray[19].src = "images/contact_us.gif"
outImgArray[20].src = "images/myaccount.gif"
outImgArray[21].src = "images/apply_now_left.gif"
outImgArray[22].src = "images/pre-approval_left.gif"
outImgArray[23].src = "images/calculators.gif"
outImgArray[24].src = "images/bad_credit.gif"
outImgArray[25].src = "images/LO_LOGIN.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
	}
}



//-->