// JavaScript Document
function swapImage(param1, param2) {
	document.getElementById(param1).src = param2;	
}
