function switchImage(imgID, newImage)
{
	obj = document.getElementById(imgID);
	if(obj)
	{
		obj.src = newImage;
	}
}