//Contents for menu 1
var aboutcouncilmenu=new Array()
aboutcouncilmenu[0]='<a href="/about/history.html">History</a>'
aboutcouncilmenu[1]='<a href="/about/mission.html">Mission Objectives</a>'
aboutcouncilmenu[2]='<a href="/about/roleofcouncil.html">Role of Council</a>'
aboutcouncilmenu[3]='<a href="/about/governance.html">Governance</a>'
aboutcouncilmenu[4]='<a href="/about/staff.html">Staff Team</a>'
aboutcouncilmenu[5]='<a href="/about/partnerships.html">Partnerships</a>'
aboutcouncilmenu[6]='<a href="/about/councilatwork.html">Council At Work</a>'

var churchdevelopmentmenu=new Array()
churchdevelopmentmenu[0]='<a href="/churchdevelopment/ccdl.html">Centre for Church Development Leadership</a>'
churchdevelopmentmenu[1]='<a href="/churchdevelopment/green-awakening-network.html">&nbsp;&nbsp;&nbsp;Green Awakening Network</a>'
churchdevelopmentmenu[2]='<a href="/churchdevelopment/cdr.html">Congregational Development Resources</a>'
churchdevelopmentmenu[3]='<a href="/churchdevelopment/cdf.html">Church Development Fund</a>'

var capitalloansmenu=new Array()
capitalloansmenu[0]='<a href="/capitalloans/capitalloans.html">Capital Loans</a>'
capitalloansmenu[1]='<a href="/investingandgiving/relieffund.html">Community Relief Fund Grants</a>'
capitalloansmenu[2]='<a href="/capitalloans/capitalloans.html#socialministry">Social Ministry</a>'
capitalloansmenu[3]='<a href="/investingandgiving/campingopportunitiesfund.html">Camping</a>'
capitalloansmenu[4]='<a href="/churchdevelopment/cdf.html">Church Development</a>'

var investingandgivingmenu=new Array()
investingandgivingmenu[0]='<a href="/investingandgiving/investinginministry.html">Investing in Ministry</a>'
investingandgivingmenu[1]='<a href="/investingandgiving/sevenyearsofplenty.html">Seven Years of Plenty Campaign</a>'
investingandgivingmenu[2]='<a href="/investingandgiving/passiton.html">&nbsp;&nbsp;&nbsp;Pass it on! Campaign</a>'
investingandgivingmenu[3]='<a href="/investingandgiving/campingopportunitiesfund.html">&nbsp;&nbsp;&nbsp;Camping Opportunities Fund</a>'
investingandgivingmenu[4]='<a href="/investingandgiving/relieffund.html">&nbsp;&nbsp;&nbsp;Community Relief Fund</a>'
investingandgivingmenu[5]='<a href="/investingandgiving/familyfunds.html">&nbsp;&nbsp;&nbsp;Family Funds</a>'

var propertymenu=new Array()
propertymenu[0]='<a href="/capitalloans/capitalloans.html">Capital Loans</a>'
propertymenu[1]='<a href="/property/insuranceandappraisals.html">Insurance and Appraisals</a>'
propertymenu[2]='<a href="/property/managementresources.html">Property Management Resources</a>'
propertymenu[3]='<a href="/property/developmentresources.html">Property Development Resources</a>'
propertymenu[4]='<a href="/property/councilproperties.html">Council Properties</a>'



var menuwidth='172px' //default menu width
var menubgcolor='#224865'  //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
