// JavaScript Document

function lightUp(path, name, extension) {
	if (document.images) {
		document.images[name].src = (path + name + extension);
	}
}
