function imageSwap(target, src) {
	var bigImg = document.getElementById(target);
	bigImg.src = src;
}
