function swapImage(img, objID)
{
	var obj = document.getElementById(objID);
	obj.src = img;
}
