// change the src attrib. of an image
function changeImg(elem, src) {
	elem.src = src;
	return false;
}
