if (document.images) {	
	quoteOff = new Image
	quoteOn = new Image
	bookOff = new Image
	bookOn = new Image
	contactOff = new Image
	contactOn = new Image
	accountOff = new Image
	accountOn = new Image
	
	bespokeOff = new Image
	bespokeOn = new Image
	faqsOff = new Image
	faqsOn = new Image
	customsOff = new Image
	customsOn = new Image
	termsOff = new Image
	termsOn = new Image
	brochureOff = new Image
	brochureOn = new Image
	scheduleOff = new Image
	scheduleOn = new Image
	prohibitOff = new Image
	prohibitOn = new Image
	calcOff = new Image
	calcOn = new Image
	
	quoteOff.src = "../images/quote-off.gif"
	quoteOn.src = "../images/quote-on.gif"
	bookOff.src = "../images/book-off.gif"
	bookOn.src = "../images/book-on.gif"
	contactOff.src = "../images/contact-off.gif"
	contactOn.src = "../images/contact-on.gif"
	accountOff.src = "../images/account-off.gif"
	accountOn.src = "../images/account-on.gif"
	
	bespokeOff.src = "images/bespoke-off.gif"
	bespokeOn.src = "images/bespoke-on.gif"
	faqsOff.src = "images/faqs-off.gif"
	faqsOn.src = "images/faqs-on.gif"
	customsOff.src = "images/customs-off.gif"
	customsOn.src = "images/customs-on.gif"
	termsOff.src = "images/terms-off.gif"
	termsOn.src = "images/terms-on.gif"
	brochureOff.src = "images/brochure-off.gif"
	brochureOn.src = "images/brochure-on.gif"
	scheduleOff.src = "images/schedule-off.gif"
	scheduleOn.src = "images/schedule-on.gif"
	prohibitOff.src = "images/prohibit-off.gif"
	prohibitOn.src = "images/prohibit-on.gif"
	calcOff.src = "images/calc-off.gif"
	calcOn.src = "images/calc-on.gif"
}

function chgImg(imgField,newImg) {
	if (document.images) {
		document[imgField].src= eval(newImg + ".src")
	}
}