var defaultMenuWidth="auto"

var linkset=new Array()

//linkset[0]='<a href="Om.html">OM</a>'
//linkset[0]+='</hr>' //Optional Separator
//linkset[0]+='<a href="yamasnyamas.html">Yamas e Nyaras</a>'
//linkset[0]+='<a href="respirerealmente.html">Respire Realmente</a>'

linkset[1]='<a href="veg.html">O que você precisa saber sobre o vegetarianismo</a>'
linkset[1]+='</hr>' //Optional Separator

linkset[2]='<a href="asanas_sn.html">Praticando o Surya Namaskar</a>'
linkset[2]+='</hr>' //Optional Separator


linkset[4]='<a href="milfd.html">As mil faces do Dharma</a>'
linkset[4]+='<a href="ebdharma.html">Em busca do Dharma</a>'
linkset[4]+='<a href="sdg.html">Simbolismo do Ganesha</a>'
linkset[4]+='<a href="ursy.html">Uma reflexão sobre o Yoga</a>'
linkset[4]+='<a href="yoga.html">Yoga | conceito e origem</a>'

linkset[5]='<a href="oedharana.html">O que é Dharana</a>'
linkset[5]+='</hr>' //Optional Separator

linkset[6]='<a href="med.html">Meditação é Dhyana</a>'
linkset[6]+='</hr>' //Optional Separator

linkset[7]='<a href="om.html">O significado do OM</a>'
linkset[7]+='</hr>' //Optional Separator

linkset[8]='<a href="respirerealmente.html">Respire realmente</a>'
linkset[8]+='</hr>' //Optional Separator

linkset[9]='<a href="recsentidos.html">Recolhendo os sentidos</a>'
linkset[9]+='</hr>' //Optional Separator

linkset[10]='<a href="aasamadhi.html">Ao alcance do Samadhi</a>'
linkset[10]+='</hr>' //Optional Separator

linkset[11]='<a href="yamasnyamas.html">Yamas e Nyamas</a>'
linkset[11]+='</hr>' //Optional Separator

linkset[12]='<a href="mandala_k.html">Mandala de Kalachakra</a>'
linkset[12]+='</hr>' //Optional Separator

//
linkset[3]='<a href="sergio.html">Sérgio Lima</a>'
linkset[3]+='<a href="simone.html">Simone Morillo</a>'



////

var ie5=document.all && !window.opera
var ns6=document.getElementById

if (ie5||ns6)
document.write('<div id="popitmenu" onMouseover="clearhidemenu();" onMouseout="dynamichide(event)"></div>')

function iecompattest(){
return (document.compatMode && document.compatMode.indexOf("CSS")!=-1)? document.documentElement : document.body
}

function showmenu(e, which, optWidth){
if (!document.all&&!document.getElementById)
return
clearhidemenu()
menuobj=ie5? document.all.popitmenu : document.getElementById("popitmenu")
menuobj.innerHTML=which
menuobj.style.width=(typeof optWidth!="undefined")? optWidth : defaultMenuWidth
menuobj.contentwidth=menuobj.offsetWidth
menuobj.contentheight=menuobj.offsetHeight
eventX=ie5? event.clientX : e.clientX
eventY=ie5? event.clientY : e.clientY
var rightedge=ie5? iecompattest().clientWidth-eventX : window.innerWidth-eventX
var bottomedge=ie5? iecompattest().clientHeight-eventY : window.innerHeight-eventY
if (rightedge<menuobj.contentwidth)
menuobj.style.left=ie5? iecompattest().scrollLeft+eventX-menuobj.contentwidth+"px" : window.pageXOffset+eventX-menuobj.contentwidth+"px"
else
menuobj.style.left=ie5? iecompattest().scrollLeft+eventX+"px" : window.pageXOffset+eventX+"px"
if (bottomedge<menuobj.contentheight)
menuobj.style.top=ie5? iecompattest().scrollTop+eventY-menuobj.contentheight+"px" : window.pageYOffset+eventY-menuobj.contentheight+"px"
else
menuobj.style.top=ie5? iecompattest().scrollTop+event.clientY+"px" : window.pageYOffset+eventY+"px"
menuobj.style.visibility="visible"
return false
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}

function hidemenu(){
if (window.menuobj)
menuobj.style.visibility="hidden"
}

function dynamichide(e){
if (ie5&&!menuobj.contains(e.toElement))
hidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
hidemenu()
}

function delayhidemenu(){
delayhide=setTimeout("hidemenu()",100)
}

function clearhidemenu(){
if (window.delayhide)
clearTimeout(delayhide)
}

if (ie5||ns6)
document.onclick=hidemenu