<!--Hide from non-JavaScript browsers
	function preload(imgObj,imgSrc) {
	if (document.images) {
		eval(imgObj+' = new Image()')
		eval(imgObj+'.src = "'+imgSrc+'"')
	}
}

preload('static','images/ghost_05.jpg')
preload('abomb','images/abomb.jpg')
preload('amptv','images/amp.jpg')
preload('mothra','images/mothra.jpg')
preload('newst','images/news.jpg')
preload('london','images/london.jpg')
preload('waste','images/waste.jpg')
preload('mask','images/mask.jpg')

function changeImage(layer,imgName,imgObj) {
	if (document.images) {
		if (document.layers && layer!=null) eval('document.'+layer+'.document.images["'+imgName+'"].src = '+imgObj+'.src')
		else document.images[imgName].src = eval(imgObj+".src")
	}
}
//end hiding from non Javascript browsers-->