// JavaScript Document
function changeImg(id){
	if (id==1) {
		url='../../imagens/transporte-armazenagem/transporte/1.jpg';
		texto='1. The roofing must be covered by with tarpaulins during transportation.';
		titulo='Transportation';
	} else if (id==2) {
		url='../../imagens/transporte-armazenagem/transporte/2.jpg';
		texto='2.  Examine the roofing sheets before removing them from the truck and make sure they are dry.  If wet, they must be thoroughly dried.';
		titulo='Transportation';
	} else if (id==3) {
		url='../../imagens/transporte-armazenagem/transporte/3.jpg';
		texto='3. The sheeting must be transported on slats, which may be wooden.';
		titulo='Transportation';
	} else if (id==4) {
		url='../../imagens/transporte-armazenagem/armazenagem/1.jpg';
		texto='1. Important: When storing the roofing in piles before assembly, lay each sheet on slats that keep it separate from the other sheets.';
		titulo='Storage';
	} else if (id==5) {
		url='../../imagens/transporte-armazenagem/armazenagem/2.jpg';
		texto='2. The roofing sheets must be slanted at about 5º in piles of up to 1.20 meters.';
		titulo='Storage';
	} else if (id==6) {
		url='../../imagens/transporte-armazenagem/montagem/1.jpg';
		texto='1. See drawing on how the sheets must be hoisted';
		titulo='Assembly';
	} else if (id==7) {
		url='../../imagens/transporte-armazenagem/montagem/2.jpg';
		texto='2.  Note the wind direction and lay the roofing in the other direction, working from eaves to ridge.';
		titulo='Assembly';
	} else if (id==8) {
		url='../../imagens/transporte-armazenagem/montagem/3.jpg';
		texto='3. On the overlapping sides, the roofing must be screwed down at intervals of no more than 500 mm.';
		titulo='Assembly';
	} else if (id==9) {
		url='../../imagens/transporte-armazenagem/montagem/4.jpg';
		texto='4. Battens must be fastened to at least three purlins for safety reasons.';
		titulo='Assembly';
	}
	var obj = document.getElementById('imgShow');
	obj.src = url;
	obj.alt = texto;
	obj.title = texto;
	var objtit = document.getElementById('nomeAcabamento');
	objtit.innerHTML = texto;
	var objtit = document.getElementById('tituloAcabamento');
	objtit.innerHTML = titulo;
	return false;
}

