function troca(div){
	if(div == 1){

		document.images["img2"].src = "imagens/imoT2g.png";
		document.images["img3"].src = "imagens/imoT3g.png";

		document.getElementById('imoL2').style.display = "none";
		document.getElementById('imoL3').style.display = "none";
	}
	if(div == 2){

		document.images["img2"].src = "imagens/imoT2.png";
		document.images["img3"].src = "imagens/imoT3g.png";

		document.getElementById('imoL2').style.display = "block";
		document.getElementById('imoL3').style.display = "none";
	}
	if(div == 3){

		document.images["img2"].src = "imagens/imoT2g.png";
		document.images["img3"].src = "imagens/imoT3.png";
		document.getElementById('imoL2').style.display = "none";
		document.getElementById('imoL3').style.display = "block";
	}
	if(div == 4){
		document.images["img4"].src = "imagens/imoT4.png";
		document.images["img5"].src = "imagens/imoT5g.png";
		document.getElementById('imoL4').style.display = "block";
		document.getElementById('imoL5').style.display = "none";
	}
	if(div == 5){
		document.images["img4"].src = "imagens/imoT4g.png";
		document.images["img5"].src = "imagens/imoT5.png";
		document.getElementById('imoL4').style.display = "none";
		document.getElementById('imoL5').style.display = "block";
	}	
}

