<!--

/*
Static menu script II (By maXimus, maximus@nsimail.com, http://maximus.ravecore.com/)
Modified slightly/ permission granted to Dynamic Drive to feature script in archive
For full source, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com
*/

//configure abaixo a largura e a posição do menu em relação as margens do navegador

var menuwidth=130
var offsetleft=310
var offsettop=200

var ns4=document.layers?1:0
var ie4=document.all?1:0
var ns6=document.getElementById&&!document.all?1:0

//No final deste trecho você encontra "bgcolor=#ffffff". Aí você configura a cor de fundo do seu menu.
if (ie4||ns6) {document.write('<span ALIGN="CENTER" ID="object1" STYLE="Top:5; Left:'+offsetleft+'; Z-Index:5;cursor:hand;background-color:white;"><TABLE BORDER="0" width="'+menuwidth+'" height="20" CELLPADDING="0" CELLSPACING="0" bgcolor="#FDF8F5">')}

else if (ns4){ document.write('<LAYER name="object1" left="'+offsetleft+'" BGCOLOR=#FDF8F5><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="1"><TR><TD><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" width="'+menuwidth+'"><font face="Arial" color="black">')}

var menui = new Array();
var menul = new Array();

//Aqui você coloca o nome dos links:
menui[0]="<b>BREVE! Aguarde!<br>Calendário dos cursos para o primeiro semestre de 2012</b>";
menui[1]="<br><b>-------------------------------</b><br><br>";
menui[2]="<b>Conheça a extensão do Curso de desenvolvimento de Lideranças<br>PROJETO DE DESENVOLVIMENTO ASSISTIDO/AVANÇADO DE LÍDERES<br></b>";
menui[3]="<br><b>-------------------------------</b><br><br>";
menui[4]="<b>Está disponível<br>a 3ª edição<br>do livro<br>'O LÍDER PROFISSIONAL'</b>";

// E aqui você coloca o endereço dos links de acordo com a lista acima.	
menul[0]="#";
menul[2]="http://www.suportetd.com.br/pastas/extensoes/avancado.html";
menul[4]="http://www.suportetd.com.br/pastas/noticias/outubro_10/noticia2.html";						   

//Aqui você encontra a fonte dos links, no caso, Arial.
for (i=0;i<=menui.length-1;i++)
if (ie4||ns6) {document.write('<TR><TD BORDERCOLOR="white" ONCLICK="location=\''+menul[i]+'\'" onmouseover="className=\'menuh\'" onMouseout="className=\'menu\'"><CENTER><FONT face="arial" STYLE="font-size:10px" color="blue">'+menui[i]+'</FONT></TD></TR>')}

//Nestre trecho você altera a cor de fundo do link quando o mouse estiver sobre ele. No caso, cyan. Aqui você também muda a cor que a célula deve ter depois que o mouse não estiver mais sobre ela. No caso, white.
else if (ns4){document.write('<TR><TD BGCOLOR="#FDF8F5"><ILAYER><LAYER width="'+menuwidth+'" onmouseover="bgColor=\'#FDF8F5\'" onmouseout="bgColor=\'#FDF8F5\'"><CENTER><A HREF="'+menul[i]+'" class=menulinks>'+menui[i]+'</A></CENTER></LAYER></ILAYER></TD></TR>')}

if (ie4||ns6) {document.write('</TABLE></span>')}
else if (ns4){document.write('</TABLE></TD></TR></TABLE></LAYER>')}

//-->
