﻿function switchImg(imgId, imgURL1, imgURL2) {
	document.getElementById(imgId).onmouseover = function(){this.src = imgURL2};
	document.getElementById(imgId).onmouseout = function(){this.src = imgURL1};
}

