function changeImgSrc(id,src) {
	if ( !document.getElementById(id) ) return;
	document.getElementById(id).src = src;
}
