﻿
/***********************************************
* AnyLink Drop Down Menu- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

//Contents for ABout the Club
var menu1=new Array()
menu1[0]='<a href="history.aspx">History</a>'
menu1[1]='<a href="staff.aspx">Administrative Staff</a>'
menu1[2]='<a href="board.aspx">Board of Directors</a>'
menu1[3]='<a href="committees.aspx">Committees</a>'
menu1[4]='<a href="directions.aspx">Directions</a>'
menu1[5]='<a href="reciprocal.aspx">Reciprocal Clubs</a>'

//Contents for Clulbhouse
var menu2=new Array()
menu2[0]='<a href="dresscode.aspx">Dress Code</a>'
menu2[1]='<a href="pool.aspx">Pool</a>'

//Contents for Course
var menu3=new Array()
menu3[0]='<a href="staff_course.aspx">Course Staff</a>'
menu3[1]='<a href="scorecard.aspx">Scorecard</a>'

//Contents for Proshop
var menu4=new Array()
menu4[0]='<a href="staff_proshop.aspx">Pro Shop Staff</a>'
menu4[1]='<a href="lessons.aspx">Lessons</a>'
menu4[2]='<a href="tournaments.aspx">Tournaments</a>'
menu4[3]='<a href="tournamentresults.aspx">Tournament Results</a>'

//Contents for Dining
var menu6=new Array()
menu6[0]='<a href="dining_item.aspx?CategoryID=1">Breakfast at the Club</a>'
menu6[1]='<a href="dining_item.aspx?CategoryID=2">Lunch at the Club</a>'
menu6[2]='<a href="dining_item.aspx?CategoryID=3">Casual Menu</a>'
menu6[3]='<a href="dining_item.aspx?CategoryID=4">Dinner at the Club</a>'
menu6[4]='<a href="dining_item.aspx?CategoryID=5">Weekly Specials</a>'
menu6[5]='<a href="dining_item.aspx?CategoryID=6">Sunday Buffet</a>'

//Contents for Dining
var menu5=new Array()
menu5[0]='<a href="dining_Staff.aspx">Food & Beverage Staff</a>'
menu5[1]='<a href="" style="cursor:default">Menus</a>'
menu5[2]='<a href="dining_item.aspx?CategoryID=1">&nbsp;&nbsp;&nbsp;&nbsp;Breakfast at the Club</a>'
menu5[3]='<a href="dining_item.aspx?CategoryID=2">&nbsp;&nbsp;&nbsp;&nbsp;Lunch at the Club</a>'
menu5[4]='<a href="dining_item.aspx?CategoryID=3">&nbsp;&nbsp;&nbsp;&nbsp;Casual Menu</a>'
menu5[5]='<a href="dining_item.aspx?CategoryID=4">&nbsp;&nbsp;&nbsp;&nbsp;Dinner at the Club</a>'
menu5[6]='<a href="dining_item.aspx?CategoryID=5">&nbsp;&nbsp;&nbsp;&nbsp;Weekly Specials</a>'
menu5[7]='<a href="dining_item.aspx?CategoryID=6">&nbsp;&nbsp;&nbsp;&nbsp;Sunday Buffet</a>'
menu5[8]='<a href="packet.pdf" target="_blank">Banquet Packet</a>'
menu5[9]='<a href="dining_hours.aspx">Hours of Operation</a>'


var menuwidth='165px' //default menu width
var menubgcolor='#cccc99'  //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="z-index:100;text-align:left;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

function OpenLink(LinkURL){
	var LFWin = ""
	if (LFWin.name == null) {
		LFWin = window.open(LinkURL,"subWin","width=800,height=550,scrollbars=yes,resizable=yes,toolbar=yes,menubar=yes,addressbar=yes, location=yes")
	}
	else{	
		LFWin.focus()
	}
}

function OpenLinkSmall(LinkURL){
	var LFWin = ""
	if (LFWin.name == null) {
		LFWin = window.open(LinkURL,"subWin","width=500,height=180,scrollbars=no,resizable=yes,toolbar=no,menubar=no,addressbar=no, location=no")
	}
	else{	
		LFWin.focus()
	}
}



