
function preloadImg(file) {
 	img = new Image();
	img.src = "/images/" + file;
}

function imgUp(img,name) {
	document.images[name].src = "/images/" + img;
}

function imgDown(img,name) {
	document.images[name].src = "/images/" + img;
}

