function writeFooter () {
	data = new Date();
	document.writeln('<div id="footer">');
	document.writeln('      <ul>');
	document.writeln('         <li><a href="empresa.html">EMPRESA</a></li>');
	document.writeln('         <li><a href="produtos.html">PRODUTOS</a></li>');
	document.writeln('         <li><a href="servicos.html">SERVIÇOS</a></li>');
	document.writeln('         <li><a href="http://www.hidromaster.com.br/cgi-bin/hidromaster_galeria.pl">GALERIA</a></li>');
	document.writeln('         <li><a href="revendas.html">REVENDAS</a></li>');
	document.writeln('         <li><a href="contato.html">CONTATO</a></li>');
	document.writeln('         <li>&copy; ' + data.getFullYear() + ' HIDROMASTER</li>');
	document.writeln('      </ul>');
	document.writeln('</div>');
}

function writeNavProdutos () {
	document.writeln('<ul>');
	document.writeln('	<li><a href="#" id="a1" onClick="openNavProdutos(1); return false;" class="menu_first_0">CALEFAÇÃO E AR CONDICIONADO</a>');
	document.writeln('		<ul id="1">');
	document.writeln('			<li><a id="l1" href="produtos_caldeiras_a_gas.html">CALDEIRAS A GÁS</a></li>');
	document.writeln('			<li><a id="l2" href="produtos_caldeiras_a_diesel.html">CALDEIRAS A DIESEL</a></li>');
	document.writeln('			<li><a id="l3" href="produtos_radiadores.html">RADIADORES</a></li>');
	document.writeln('			<li><a id="l4" href="produtos_toalheiros.html">TOALHEIROS</a></li>');
	document.writeln('			<li><a id="l5" href="produtos_piso_radiante.html">PISO RADIANTE</a></li>');
	document.writeln('			<li><a id="l6" href="produtos_fan_coils.html">FAN COILS</a></li>');
	document.writeln('			<li><a id="l7" href="produtos_aquecedores_a_gas.html">AQUECEDORES A GÁS</a></li>');
	document.writeln('			<li><a id="l8" href="produtos_aquecedores_eletricos.html">AQUECEDORES ELÉTRICOS</a></li>');
	document.writeln('			<li><a id="l9" href="produtos_ar_condicionado_split.html">AR CONDICIONADO SPLIT</a></li>');
	document.writeln('		</ul>');
	document.writeln('	</li>');
	document.writeln('	<li><a href="#" id="a2" onClick="openNavProdutos(2); return false;" class="menu_0">AQUECEDORES DE ÁGUA</a>');
	document.writeln('		<ul id="2">');
	document.writeln('			<li><a id="l10" href="produtos_a_gas.html">A GÁS</a></li>');
	document.writeln('			<li><a id="l11" href="produtos_solar.html">SOLAR</a></li>');
	document.writeln('			<li><a id="l12" href="produtos_piscinas.html">PISCINAS</a></li>');
	document.writeln('		</ul>');
	document.writeln('	</li>');
	document.writeln('	<li><a href="#" id="a3" onClick="openNavProdutos(3); return false;" class="menu_0">ACESSÓRIOS</a>');
	document.writeln('		<ul id="3">');
	document.writeln('			<li><a id="l13" href="produtos_termostatos_e_controladores.html">TERMOSTATOS E CONTROLAD.</a></li>');
	document.writeln('			<li><a id="l14" href="produtos_bombas_e_pressurizadores.html">BOMBAS E PRESSURIZADORES</a></li>');
	document.writeln('			<li><a id="l15" href="produtos_cabecas_termostaticas.html">CABEÇAS TERMOSTÁTICAS</a></li>');
	document.writeln('		</ul>');
	document.writeln('	</li>');
	document.writeln('	<li><a href="#" id="a4" onClick="openNavProdutos(4); return false;" class="menu_last_0">DISTRIBUIÇÃO</a>');
	document.writeln('		<ul id="4" class="last">');
	document.writeln('			<li><a id="l16" href="produtos_tubos_ppr_e_multi_camadas.html">TUBOS PPR E MULTI-CAMADAS</a></li>');
	document.writeln('			<li><a id="l17" href="produtos_tubos_para_gas.html">TUBOS PARA GÁS</a></li>');
	document.writeln('			<li><a id="l18" href="#" onClick="alert(\'Em Breve.\'); return false;">MEDIDORES E REGULADORES</a></li>');
	document.writeln('		</ul>');
	document.writeln('</ul>');
}

function openNavProdutos(submenu){
	for (i=1;i<=4;i++) {
		if (i==1) {
			document.getElementById('a' + i).className = "menu_first_0";
		}
		else if (i==4) {
			document.getElementById('a' + i).className = "menu_last_0";
		}
		else {
			document.getElementById('a' + i).className = "menu_0";
		}
		document.getElementById(i).style.display = "none";
	}
	
	if (submenu==1) {
		document.getElementById('a' + submenu).className = "menu_first_1";
	}
	else if (submenu==4) {
		document.getElementById('a' + submenu).className = "menu_last_1";
	}
	else {
		document.getElementById('a' + submenu).className = "menu_1";
	}
	document.getElementById(submenu).style.display = "block";
}

function setLink(num){
	document.getElementById('l' + num).className = 'opcao_1';
}

function writeNavServicos () {
	document.writeln('<ul>');
	document.writeln('	<li><a href="servicos_redes_de_ar_condicionado.html" class="menu_first_0">REDES DE AR CONDICIONADO</a></li>');
	document.writeln('	<li><a href="servicos_redes_de_calefacao.html" class="menu_0">REDES DE CALEFAÇÃO</a></li>');
	document.writeln('	<li><a href="servicos_redes_de_gas.html" class="menu_0">REDES DE GÁS</a></li>');
	document.writeln('	<li><a href="servicos_assistencia_tecnica.html" class="menu_0">ASSISTÊNCIA TÉCNICA</a></li>');
	document.writeln('	<li><a href="servicos_garantia.html" class="menu_last_0">GARANTIA</a>');
	document.writeln('</ul>');
}

