
///Place calling statement in the HEAD of the page.
///<script type="text/javascript" src="scripts/popnav.js"></script>
/***********************************************
* Pop-it menu- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

var defaultMenuWidth="170px" //set default menu width.

var linkset=new Array()
//SPECIFY MENU SETS AND THEIR LINKS. FOLLOW SYNTAX LAID OUT

linkset[0]='<a href="index.html"><center>Home Page</center></a>'
linkset[0]+='<a href="#"><hr color="#000000" size=2></a>'
linkset[0]+='<a href="newissue.pdf">Current Issue of the YFQ</a>'
linkset[0]+='<a href="lastissue.pdf">Previous Issue of the YFQ</a>'
linkset[0]+='<a href="#"><hr color="#000000" size=2></a>'
linkset[0]+='<a href="yngha.html">About the YNGHA</a>'
linkset[0]+='<a href="page3.html">Archives</a>'
linkset[0]+='<a href="dna.html">DNA Project</a>'
linkset[0]+='<a href="http://www.facebook.com/group.php?gid=104638336267561">Facebook - YNGHA<a>'
linkset[0]+='<a href="crest.html">Family Crest<a>'
linkset[0]+='<a href="forms.html">Forms<a>'
linkset[0]+='<a href="http://www.genforum.genealogy.com/yarbrough">Yarbrough GenForum</a>'
linkset[0]+='<a href="hist1.html">Family History</a>'
linkset[0]+='<a href="links.html">Links</a>'
linkset[0]+='<a href="YBoDMins.html">Minutes, 2010 Board Mtg.</a>'
linkset[0]+='<a href="http://www.yarbroughfamily.org/gbook/indexnr.php">News Room</a>'
linkset[0]+='<a href="officers.html">Officers & Directors</a>'
linkset[0]+='<a href="origins.html">Origin of Yarbrough</a>'
linkset[0]+='<a href="policy.html">Posting Policies</a>'
linkset[0]+='<a href="requiem.html">Requiem</a>'
linkset[0]+='<a href="sitemap.html">Site Map</a>'
linkset[0]+='<a href="Recipes.html">Some Southern Humor</a>'
linkset[0]+='<a href="Ynames.html">Spellings of the Name</a>'
linkset[0]+='<a href="3myths.html">Three Myths<a>'
linkset[0]+='<a href="videos.html">Videos on Family Research</a>'
linkset[0]+='<a href="bylaws.html">YNGHA Bylaws</a>'
linkset[0]+='<a href="charter.html">YNGHA Charter</a>'
linkset[0]+='<a href="YarStore.html">Yarbrough Store</a>'
linkset[0]+='<a href="#"><hr color="#000000" size=2></a>'
linkset[0]+='<a href="mailto:lsyarbro@otelco.net?subject=YNGHA Contact"><center>Contact Us</center></a>'

linkset[1]='<a href="videos.html">Videos on Family Research</a>'
linkset[1]+='<a href="newissue.pdf">Current YFQ Issue</a>'
linkset[1]+='<a href="lastissue.pdf">Previous YFQ Issue</a>'
linkset[1]+='<a href="page3.html">YFQ Archives</a>'


////No need to edit beyond here

var ie_5=document.all && !window.opera
var ns60=document.getElementById

if (ie_5||ns60)
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=ie_5? 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=ie_5? event.clientX : e.clientX
eventY=ie_5? event.clientY : e.clientY
//Find out how close the mouse is to the corner of the window
var rightedge=ie_5? iecompattest().clientWidth-eventX : window.innerWidth-eventX
var bottomedge=ie_5? iecompattest().clientHeight-eventY : window.innerHeight-eventY
//if the horizontal distance isn't enough to accomodate the width of the context menu
if (rightedge<menuobj.contentwidth)
//move the horizontal position of the menu to the left by it's width
menuobj.style.left=ie_5? iecompattest().scrollLeft+eventX-menuobj.contentwidth+"px" : window.pageXOffset+eventX-menuobj.contentwidth+"px"
else
//position the horizontal position of the menu where the mouse was clicked
menuobj.style.left=ie_5? iecompattest().scrollLeft+eventX+"px" : window.pageXOffset+eventX+"px"
//same concept with the vertical position
if (bottomedge<menuobj.contentheight)
menuobj.style.top=ie_5? iecompattest().scrollTop+eventY-menuobj.contentheight+"px" : window.pageYOffset+eventY-menuobj.contentheight+"px"
else
menuobj.style.top=ie_5? iecompattest().scrollTop+event.clientY+"px" : window.pageYOffset+eventY+"px"
menuobj.style.visibility="visible"
return false
}

function contains_ns60(a, b) {
//Determines if 1 element in contained in another- by Brainjar.com
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 (ie_5&&!menuobj.contains(e.toElement))
hidemenu()
else if (ns60&&e.currentTarget!= e.relatedTarget&& !contains_ns60(e.currentTarget, e.relatedTarget))
hidemenu()
}

function delayhidemenu(){
delayhide=setTimeout("hidemenu()",500)
}

function clearhidemenu(){
if (window.delayhide)
clearTimeout(delayhide)
}

if (ie_5||ns60)
document.onclick=hidemenu


