I want that when the person clicks on option one and then clicks on the two, the one is cleared.
<script>
function mudaImagem (foto){
document.getElementById("vamo") .src =foto;
}
function selecionaPequeno(){
document.getElementById("bora") .src = "imagens/P1.gif";
}
function voltaPequeno(){
document.getElementById("bora") .src = "imagens/P1.png";
}
function selecionaMedio(){
document.getElementById("corre") .src = "imagens/P1.gif";
}
function selecionaGrande(){
document.getElementById("neh") .src = "imagens/G3.png";
}
function selecionaGigantesco(){
document.getElementById("jeh") .src = "imagens/GG3.png";
}
</script>
HTML
<img src="imagens/P1.png" id="bora" name="opa" onclick="selecionaPequeno()" width="56" height="35" />
<img src="imagens/P1.png" id="corre" name="opa" onclick="selecionaMedio()" width="56" height="35" />