function swapImg(targetID, imgSrc)
{
	if (document.getElementById(targetID))
	{
		document.getElementById(targetID).src = imgSrc;
	}
}
