function changeImage( strImageId, strImageSrc )
{
	if (document.getElementById( strImageId )){
	document.getElementById( strImageId).src = 'images/' + strImageSrc;
	}
}