var forms1=new Array()
forms1[0]='<u>Forms:</u>'
forms1[1]='<a href="forms/baptism_enrolment_form.pdf">Baptism Enrolment Form</a>'
forms1[2]='<a href="forms/first_reconciliation_enrolment_form.pdf">First Reconciliation Enrolment Form</a>'
//forms1[2]='<a href="forms/confirmation_enrolment_form.pdf">Confirmation Enrolment Form</a>'
forms1[3]='<a href="forms/new_parishioner_form.pdf">New Parishoner Form</a>'
forms1[4]='<u>Parish Programmes Information:</u>'
forms1[5]='<a href="forms/2010_parish_adult_faith_education_programme.pdf">Adult Education</a>'
forms1[6]='<a href="forms/baptism_guidelines.pdf">Baptism Guidelines</a>'
forms1[7]='<a href="forms/the_sacraments_of_initiation.pdf">Sacraments of Initiation</a>'
//forms1[2]='<a href="forms/first_communion_enrolment_form.pdf">First Communion Enrolment Form</a>'
forms1[8]='<u>Diary Dates:</u>'
forms1[9]='<a href="forms/general_diary_dates.pdf">General Diary Dates</a>'
forms1[10]='<a href="forms/sacramental_information_letter.pdf">Sacramental Information</a>'
//forms1[11]='<a href="forms/first_communion_enrolment_form.pdf">First Communion Enrolment Form</a>'

var bulletin=new Array()
bulletin[0]='<a href="bulletin/sunday_28th_february_2010.pdf">Sunday 28th February 2010</a>'
bulletin[1]='<a href="bulletin/sunday_21st_february_2010.pdf">Sunday 21st February 2010</a>'
bulletin[2]='<a href="bulletin.php">Previous Bulletins</a>'
bulletin[3]='<a href="bridge.php">The Bridge</a>'

var contact=new Array()
contact[0]='<a href="contact.php">Staff & Contact</a>'
contact[1]='<a href="map.php">Locate & Map</a>'
contact[2]='<a href="new.php">New Parishioners</a>'
contact[3]='<a href="ministry.php">Volunteers</a>'

var times=new Array()
times[0]='<a href="times.php">Regular Schedule</a>'
times[1]='<a href="forms/easter_triduum_timetable.pdf">Easter Schedule</a>'

var sacraments=new Array()
sacraments[0]='<a href="life.php">Sacramental Information</a>'
sacraments[1]='<a href="funeral.php">Funeral Liturgy</a>'

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

