// JavaScript Document

function changeImg(imgSrc, objID)
{
	var obj = document.getElementById(objID);
	obj.src = imgSrc;
}
