function montaMenu(){
var str='';

str+="	<DIV align=\"center\">";
str+="		<UL>";
str+="         <LI><A";
str+="        href=\"index.php\">Home</A>        </LI>";
str+="         <LI><A";
str+="        href=\"sobreLGT.html\">Sobre  a ind&uacute;stria </A> </LI>";
str+="        <LI><A";
str+="        href=\"produtosLGT.html\">Produtos</A> </LI>";
str+="        <LI><A";
str+="        href=\"segmentosLGT.html\">Segmentos</A>        </LI>";
str+="        <LI><A href=\"contatoLGT.html\">Contato</A> </LI>";
str+="        <LI><A href=\"#\">Novidades</A> </LI>";
str+="		</UL>";
str+="	</DIV>";

return str;
}

function exibeMenu(){
		var blocoCntd = document.getElementById('topo');
		blocoCntd.innerHTML = "";
		blocoCntd.innerHTML = montaMenu();
}
exibeMenu();