function swapImage ( target, newImg) {
	document.getElementById(target).src = newImg;
	return true;
}
