/***********************************************
* AnyLink Drop Down Menu- ? Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

//Contents for menu 1
var menu1=new Array()
menu1[0]='<a href="http://spreadhead.virtualave.net/ailbe/ailbe.html", target="_blank">&#187; all i leave behind</a>'
menu1[1]='<a href="http://www.bing.com/search?q=rosendo+m+makabali&form=QBLH&filt=all&qs=n", target="_blank">&#187; bing</a>'
menu1[2]='<a href="http://dlncrt_lestat.blogs.friendster.com/my_blog/", target="_blank">&#187; boni&#39;s friendster blog</a>'
menu1[3]='<a href="http://eksite.com/", target="_blank">&#187; eK! - electronic Kabalen</a>'
menu1[4]='<a href="http://www.google.com.ph/search?hl=en&q=rosendo+m+makabali&meta=", target="_blank">&#187; google</a>'
menu1[5]='<a href="http://books.google.com/books?q=rosendo+makabali&lr=&spell=1&sa=N&start=0", target="_blank">&#187; google books</a>'
menu1[6]='<a href="http://www.jayprotaciomendoza.com/", target="_blank">&#187; jayprotaciomendoza.com</a>'
menu1[7]='<a href="http://kappasigmafraternity.net/", target="_blank">&#187; kappasigmafraternity.net</a>'
menu1[8]='<a href="http://www.eac.edu.ph/dalityapi/makata/2002/makata4.html", target="_blank">&#187; makata issue no. 4</a>'
menu1[9]='<a href="http://www.eac.edu.ph/dalityapi/makata/2002/makata6.html", target="_blank">&#187; makata issue no. 6</a>'
menu1[10]='<a href="http://www.eac.edu.ph/dalityapi/makata/2002/makata7.html", target="_blank">&#187; makata issue no. 7</a>'
menu1[11]='<a href="http://www.eac.edu.ph/dalityapi/makata/2002/makata8.html", target="_blank">&#187; makata issue no. 8</a>'
menu1[12]='<a href="http://www.eac.edu.ph/dalityapi/makata/2002/makata10.html", target="_blank">&#187; makata issue no. 10</a>'
menu1[13]='<a href="http://www.eac.edu.ph/dalityapi/makata/2002/makata12.html", target="_blank">&#187; makata issue no. 12</a>'
menu1[14]='<a href="http://lexiejoy.wordpress.com/1997/04/02/metamorphosis/", target="_blank">&#187; metamorphosis by lexiejoy</a>'
menu1[15]='<a href="http://koha.nlp.gov.ph/cgi-bin/koha/opac-ISBDdetail.pl?bib=316508", target="_blank">&#187; national library of the philippines</a>'
menu1[16]='<a href="http://spreadhead.virtualave.net/", target="_blank">&#187; spreadhead.net</a>'
menu1[17]='<a href="http://www.myspace.com/synapticgraffiti", target="_blank">&#187; synaptic graffiti collective</a>'
menu1[18]='<a href="http://search.yahoo.com/search;_ylt=A0oGkjl23R5IJ7gAcFJXNyoA?p=rosendo+m+makabali&fr=yfp-t-127&ei=UTF-8&fp_ip=PH&rd=r1&meta=vc%3Dph", target="_blank">&#187; yahoo!</a>'

var menuwidth='165px' //default menu width is 165px
var menubgcolor='#212121'  //menu bgcolor
var disappeardelay=250  //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;width:'+menuwidth+';background-color:'+menubgcolor+'" 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="-500px"
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-18
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
