// JavaScript Document

// About
var menu1=new Array()
menu1[0]='<a href="/index.html">Back to Main Page</a>'
menu1[1]='<a href="/about/faq/index.html">FAQs</a>'
menu1[2]='<a href="/about/history/index.html">History</a>'
menu1[3]='<a href="/about/hours/index.html">Hours of Operation</a>'
menu1[4]='<a href="/rules/managespec/index.html">Management Specialists</a>'

// Rules & Regulations
var menu2=new Array()
menu2[0]='<a href="/rules/bylaws/index.html">Bylaws</a>'
menu2[1]='<a href="/board/policies/index.html">Policies</a>'
menu2[2]='<a href="/rules/covenant/index.html">Covenants</a>'

menu2[3]='<a href="/rules/PoolRules2008.htm" target=_blank>Pool Rules</a>'
menu2[4]='<a href="/rules/LakeRules2008.htm" target=_blank>Lake Rules</a>'
menu2[5]='<a href="/rules/TennisRules2008.htm" target=_blank>Tennis Rules</a>'

menu2[6]='<a href="/rules/VillageCenterRulesRegulations2008.htm" target=_blank>Village Center Rules</a>'
menu2[7]='<a href="/rules/designreview/index.html">Design Review Committee</a>'

// Newsletter
var menu3=new Array()
menu3[0]='<a href="/newsletter_meetings/newsletter.html">Newsletters</a>'

// Board Happenings
var menu4=new Array()
menu4[0]='<a href="/newsletter_meetings/minutes_agenda.html">Minutes & Agenda</a>'
menu4[1]='<a href="/board/financial/index.html">Financial</a>'
menu4[2]='<a href="/board/members/index.html">Board Members</a>'

// Clubhouse & Activities
var menu5=new Array()
menu5[0]='<a href="/clubhouse/boating/index.html">Boating</a>'
menu5[1]='<a href="/clubhouse/rental/index.html">Facility Rental</a>'

// Community
var menu6=new Array()
menu6[0]='<a href="/community/index.html">Main</a>'
menu6[1]='<a href="/community/villages/index.html">Villages</a>'
menu6[2]='<a href="/community/schools/index.html">Schools</a>'
menu6[3]='<a href="/construction.html">Real Estate</a>'
menu6[4]='<a href="/community/govt/index.html">Local Government</a>'
menu6[5]='<a href="/rules/bmd/index.html">Bowles Metropolitan District</a>'
menu6[6]='<a href="/construction.html">Local Attractions</a>'
menu6[7]='<a href="http://amazingforums.com/forum1/GRANTRANCH/forum.html" target=_blank>Discussion Forum</a>'

var menu7=new Array()
menu7[0]='<a href="mailto:boardmember@grantranch.org">Email the Board</a>'
menu7[1]='<a href="mailto:webmaster@grantranch.org">Email the Webmaster</a>'

var menu8=new Array()
menu8[0]='<form action="../../../cgi-bin/mysearch.ie.pl"><br><table align=center><tr><td align=center><b>Enter search terms:</td></tr><tr><td align=center><input type="text" name="terms"></td></tr><tr><td align=center><input type="submit" value="Submit"></td></tr></table></form>'

var menuwidth='200px' 
var menubgcolor='#ffffff' 
var disappeardelay=400  
var hidemenu_onclick="no" 

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
