//Contents for menu 1
var menu1=new Array()
menu1[0]='<a href=javascript:jumpto("36.htm")>The Lost Times</a>'
menu1[1]='<a href=javascript:jumpto("37.htm")>They Can not Kill Your Spirit... </a>'
menu1[2]='<a href=javascript:jumpto("0.htm")>Rules for name and fame</a>'
menu1[3]='<a href=javascript:jumpto("1.htm")>12 Gifts of Real Life</a>'
menu1[4]='<a href=javascript:jumpto("2.htm")>To Believe.....</a>'
menu1[5]='<a href=javascript:jumpto("3.htm")>The Time Bank</a>'
menu1[6]='<a href=javascript:jumpto("4.htm")>A Real Gift of Real Life</a>'
menu1[7]='<a href=javascript:jumpto("5.htm")>Time Management Mantra</a>'
menu1[8]='<a href=javascript:jumpto("6.htm")>Dreams.....</a>'
menu1[9]='<a href=javascript:jumpto("8.htm")>Think On This</a>'
menu1[10]='<a href=javascript:jumpto("9.htm")>The Elegent Touch</a>'
menu1[11]='<a href=javascript:jumpto("10.htm")>Man With Crossed Fingers</a>'


//Contents for menu 2, and so on
var menu2=new Array()
menu2[12]='<a href=javascript:jumpto("12.htm")>Sow Success to Reap Success</a>'
menu2[13]='<a href=javascript:jumpto("13.htm")>How to be more LUCKY</a>'
menu2[14]='<a href=javascript:jumpto("14.htm")>The Difference within YOU</a>'
menu2[15]='<a href=javascript:jumpto("15.htm")>Perspective Vs. Perspective</a>'
menu2[16]='<a href=javascript:jumpto("16.htm")>Tommorow is the only VISION</a>'
menu2[17]='<a href=javascript:jumpto("17.htm")>Take Time to...</a>'
menu2[18]='<a href=javascript:jumpto("18.htm")>The Time</a>'
menu2[19]='<a href=javascript:jumpto("19.htm")>Right Here Right Now</a>'
menu2[20]='<a href=javascript:jumpto("20.htm")>To Your Success</a>'
menu2[21]='<a href=javascript:jumpto("21.htm")>Top secrets of the YOUTH</a>'
menu2[22]='<a href=javascript:jumpto("22.htm")>Five Factual Facts</a>'
menu2[23]='<a href=javascript:jumpto("23.htm")>9 requisites for contented living</a>'

var menu3=new Array()
menu3[24]='<a href=javascript:jumpto("24.htm")>Sir Alexander Fleming</a>'
menu3[25]='<a href=javascript:jumpto("25.htm")>It is all up to YOU</a>'
menu3[26]='<a href=javascript:jumpto("26.htm")>Take on the sensible QUIZ</a>'
menu3[27]='<a href=javascript:jumpto("27.htm")>Be Thankful</a>'
menu3[28]='<a href=javascript:jumpto("28.htm")>Believe in the BEST</a>'
menu3[29]='<a href=javascript:jumpto("29.htm")>Always be your Best</a>'
menu3[30]='<a href=javascript:jumpto("30.htm")>Think Big way.... anyway</a>'
menu3[31]='<a href=javascript:jumpto("31.htm")>Flourishing  Friendship</a>'
menu3[32]='<a href=javascript:jumpto("32.htm")>14 Principles of Success </a>'
menu3[33]='<a href=javascript:jumpto("33.htm")> The Paradox of our Time! </a>'
menu3[34]='<a href=javascript:jumpto("34.htm")>Bear to hear the truth </a>'
menu3[35]='<a href=javascript:jumpto("35.htm")>The Coin </a>'

var menuwidth='165px' //default menu width
var menubgcolor='lightyellow'  //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



