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
	
	brochureOff = new Image
	brochureOn = new Image
	jobsOff = new Image
	jobsOn = new Image
	contOff = new Image
	contOn = new Image
	termsOff = new Image
	termsOn = new Image
	whoOff = new Image
	whoOn = new Image
	newsOff = new Image
	newsOn = 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"
	
	brochureOff.src = "images/brochure-off.gif"
	brochureOn.src = "images/brochure-on.gif"
	jobsOff.src = "images/jobs-off.gif"
	jobsOn.src = "images/jobs-on.gif"
	contOff.src = "images/contact-off.gif"
	contOn.src = "images/contact-on.gif"
	termsOff.src = "images/terms-off.gif"
	termsOn.src = "images/terms-on.gif"
	whoOff.src = "images/who-off.gif"
	whoOn.src = "images/who-on.gif"
	newsOff.src = "images/news-off.gif"
	newsOn.src = "images/news-on.gif"
}

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