<!--

/*
Configure menu styles below
NOTE: To edit the link colors, go to the STYLE tags and edit the ssm2Items colors
*/

Today=new Date();
ThisMonth=Today.getMonth()+1;
ThisYear=Today.getFullYear();  //included if you wish to insert the year
function MonthTxt (MonthNumber) {
var Month=new Array();
Month[1]="jan";
Month[2]="feb";
Month[3]="mar";
Month[4]="apr";
Month[5]="may";
Month[6]="jun";
Month[7]="jul";
Month[8]="aug";
Month[9]="sep";
Month[10]="oct";
Month[11]="nov";
Month[12]="dec";
return Month[MonthNumber];
}
MonthName=MonthTxt(ThisMonth)+ThisYear+".htm"


YOffset=128; // no quotes!!
XOffset=149;
staticYOffset=30; // no quotes!!
slideSpeed=20 // no quotes!!
waitTime=100; // no quotes!! this sets the time the menu stays out for after the mouse goes off it.
menuBGColor="black";
menuIsStatic="yes"; //this sets whether menu should stay static on the screen
menuWidth=130; // Must be a multiple of 10! no quotes!!
menuCols=2;
hdrFontFamily="verdana";
hdrFontSize="2";
hdrFontColor="white";
hdrBGColor="#669999"; // CCCC60
hdrAlign="left";
hdrVAlign="center";
hdrHeight="15";
linkFontFamily="Verdana";
linkFontSize="2";
linkBGColor="white";
linkOverBGColor="#FFFF99";
linkTarget="_top";
linkAlign="Left";
barBGColor="#CCCC60"; // 669999
barFontFamily="Verdana";
barFontSize="2";
barFontColor="white";
barVAlign="center";
barWidth=15; // no quotes!!
barText="QUICK LINKS"; // <IMG> tag supported. Put exact html for an image to show.

///////////////////////////

// ssmItems[...]=[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
ssmItems[0]=["Menu"] //create header
ssmItems[1]=["Golf Home", "GolfMain.htm", ""]
ssmItems[2]=["Scorecard", "scorecard.htm", ""]
ssmItems[3]=["Members Page", "memberspages.htm", ""]
ssmItems[4]=["Tennis", "Tennis.htm", ""]
ssmItems[5]=["Swimming", "swimming.htm", ""]
ssmItems[6]=["Monthly Calendar", "COE/" + MonthName , "_new" ]
ssmItems[7]=["Contact Us", "contact.htm", ""]
ssmItems[8]=["Membership", "membership.htm", ""]
ssmItems[9]=["MGA Secure Site", "mga_secure.asp", ""]
//ssmItems[7]=["FAQ", "http://www.dynamicdrive.com/faqs.htm", "", 1, "no"] //create two column row
//ssmItems[8]=["Email", "http://www.dynamicdrive.com/contact.htm", "",1]

ssmItems[10]=["External Links", "", ""] //create header
ssmItems[11]=["Tennessee Golf", "http://www.golfhousetennessee.com/", "_new"]
ssmItems[12]=["Handicap GHIN", "http://www.ghin.com/", "_new"]
ssmItems[13]=["U S G A", "http://www.usga.org/", "_new"]

buildMenu();

//-->