// JavaScript Document
function swapImage(imagemAntiga, novaImagem) {
	obj=document.getElementById(imagemAntiga);
	obj.src=novaImagem;
	
}

