
function ImageRestore(name, image) {
	var image = "'" + image + "'";
	var imageObj = eval(image);
	document.images[name].src = imageObj;
	}
	
function SwapImage(name, image) {
	var image = "'" + image + "'";
	var imageObj = eval(image);
	document.images[name].src = imageObj;
	}

function PreloadImages() {
	for(loop = 0; loop < document.images.length; loop++) {
		document.images[loop].src;
		}
	}

