var conheca=new Array()
conheca[0]='<a href="/colegio/colegio1.html">&nbsp; &bull; Hist&oacute;rico</a>'
conheca[1]='<a href="/colegio/colegio2.html">&nbsp; &bull;  Estrutura</a>'
conheca[2]='<a href="/colegio/colegio3.html">&nbsp; &bull; Localiza&ccedil;&atilde;o</a>'

var cursos=new Array()
cursos[0]='<a href="/cursos/cursos1.html">&nbsp; &bull; Educa&ccedil;&atilde;o Integral</a>'
cursos[1]='<a href="/cursos/cursos2.html">&nbsp; &bull; Ensino Fundamental I</a>'
cursos[2]='<a href="/cursos/cursos3.html">&nbsp; &bull; Ensino Fundamental II</a>'
cursos[3]='<a href="/cursos/cursos4.html">&nbsp; &bull; Ensino M&eacute;dio</a>'

var tecnicos=new Array()
tecnicos[0]='<a href="/tecnico/tecnico1.html">&nbsp; &bull; Administa&ccedil;&atilde;o</a>' 
tecnicos[1]='<a href="/tecnico/tecnico2.html">&nbsp; &bull; Contabilidade</a>'
tecnicos[2]='<a href="/tecnico/tecnico3.html">&nbsp; &bull; Inform&aacute;tica</a>'
tecnicos[3]='<a href="/tecnico/tecnico4.html">&nbsp; &bull; Log&iacute;stica</a>'
tecnicos[4]='<a href="/tecnico/tecnico5.html">&nbsp; &bull; Nutri&ccedil;&atilde;o</a>'
tecnicos[5]='<a href="/tecnico/tecnico6.html">&nbsp; &bull; Processos de Produ&ccedil;&atilde;o</a>'
tecnicos[6]='<a href="/tecnico/tecnico7.html">&nbsp; &bull; Recursos Humanos</a>'
tecnicos[7]='<a href="/tecnico/tecnico8.html">&nbsp; &bull; Seguran&ccedil;a no Trabalho</a>'

var extracurricular=new Array()
extracurricular[0]='<a href="/extracurricular/extracurricular1.html">&nbsp; &bull; Oficinas Esportes</a>'
extracurricular[1]='<a href="/extracurricular/extracurricular2.html">&nbsp; &bull; Oficinas Culturais</a>'
extracurricular[2]='<a href="/extracurricular/extracurricular3.html">&nbsp; &bull; Oficinas de L&iacute;nguas</a>'

var eventos=new Array()
eventos[0]='<a href="/eventos/eventos1.html">&nbsp; &bull; Galeria de Fotos</a>'

var projetos=new Array()
projetos[0]='<a href="/projetos/projetos5.html">&nbsp; &bull; Projeto Horta </a>'
projetos[1]='<a href="/projetos/projetos1.html">&nbsp; &bull; Conta&ccedil;&atilde;o de Hist&oacute;rias </a>'
projetos[2]='<a href="/projetos/projetos2.html">&nbsp; &bull; Projeto ANE</a>'
projetos[3]='<a href="/projetos/projetos3.html">&nbsp; &bull; Integra&ccedil;&atilde;o</a>'
projetos[4]='<a href="/projetos/projetos4.html">&nbsp; &bull; COB Verde</a>'

var contatos=new Array()
contatos[0]='<a href="/contatos/contato1.html">&nbsp; &bull; Fale Conosco</a>'
contatos[1]='<a href="#">&nbsp; &bull; Ouvidoria</a>'
contatos[2]='<a href="/contatos/contato3.html">&nbsp; &bull; Localiza&ccedil;&atilde;o</a>'


 














var menuwidth='' //default menu width
var menubgcolor=''  //menu bgcolor
var disappeardelay=''  //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes" //hide menu when user clicks within menu?

/////No further editting needed

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
document.write('<div id="dropmenudiv" style="visibility:hidden;" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}


function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top="-450px"
if (menuwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
obj.visibility=visible
else if (e.type=="click")
obj.visibility=hidden
}

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-10
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
}
}
return edgeoffset
}

function populatemenu(what){
if (ie4||ns6)
dropmenuobj.innerHTML=what.join("")
}


function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)

if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)

dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"

}

return clickreturnvalue()
}

function clickreturnvalue(){
if (ie4||ns6) return false
else return true
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}

function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}

function hidemenu(e){
if (typeof dropmenuobj!="undefined"){
if (ie4||ns6)
dropmenuobj.style.visibility="hidden"
}
}

function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

if (hidemenu_onclick=="yes")
document.onclick=hidemenu




