var fabrica = new Array();
var endereco = new Array();
var foto = new Array();
var itemAnt = 4;

// Função Fábricas
function showFactory(id) {
	document.getElementById("jsEndereco").innerHTML = endereco[id];
	document.getElementById("jsFoto").src = "img/img_" + foto[id] + ".jpg";
	
	document.getElementById("jsFabrica" + itemAnt).style.display = "none";
	document.getElementById("jsFabrica0").style.display = "none";
	document.getElementById("jsFabrica" + id).style.display = "block";

	itemAnt = id;
}

fabrica[0] = "VULCABRAS DO NORDESTE S.A.";
endereco[0] = "Avenida Presidente Castelo Branco, 6847 - Distrito Industrial<br />CEP 62880-000 - Horizontes / CE, Telefone: (85) 3336.1733";
foto[0] = "vulcabras_nordeste";

fabrica[1] = "CALÇADOS HISPANA LTDA.";
endereco[1] = "Rua Andr&eacute; Avelino Nascimento, 114 - Centro<br />CEP 49514-000 - Frei Paulo / SE, Telefone: (79) 3447.1700";
foto[1] = "calcados_hispana";

fabrica[2] = "CALÇADOS AZALEIA NORDESTE S.A.";
endereco[2] = "Avenida J&uacute;lio Jos&eacute; Rodrigues n&ordm; 1996 - Vila Izabel<br />CEP 45700-000 - Itapetinga - BA, Telefone: (77) 3261.8000";
foto[2] = "calcados_azaleia_nordeste";

fabrica[3] = "CALÇADOS AZALEIA S.A.";
endereco[3] = "Rua Dr. Legendre n&ordm; 34 - Centro<br />CEP 95630-000 - Parob&eacute; / RS, Telefone: (51) 3543.1000";
foto[3] = "calcados_azaleia";

//fabrica[4] = "CALÇADOS AZALEIA S.A. - FILIAL 19";
//endereco[4] = "Avenida Brasil, 765 - Centro<br />CEP 93180-000 - Port&atilde;o / RS, Telefone: (51) 3562.1377";
//foto[4] = "calcados_azaleia_filial19";

fabrica[4] = "INDULAR MANUFACTURAS S.A. - ARGENTINA";
endereco[4] = "Los Patos, 2151 - Buenos Aires, Argentina.<br /> Telefone: (11) 6772.2500";
foto[4] = "indular_manufacturas";