<!-- Copyright MJ Demarco (c) 2000
//with acknowledgement to Tom Negrino and Dori Smith
//mouse rollovers


if (document.images) {
		aust = new Image
		nsw = new Image
		vic = new Image
		qld = new Image
		tas = new Image
		wa = new Image
		nt = new Image
		sa = new Image
		
		aust.src = "../images/aust.gif"
		nsw.src = "../images/nsw.gif"
		vic.src = "../images/vic.gif"
		qld.src = "../images/qld.gif"
		tas.src = "../images/tas.gif"
		wa.src = "../images/wa.gif"
		nt.src = "../images/nt.gif"
		sa.src = "../images/sa.gif"
		
	}
	
	function chgImg(imgField,newImg) {
		if (document.images) {
			document[imgField].src= eval(newImg + ".src")
		}
	}
	
// End-->
