
/*
Configure menu styles below
NOTE: To edit the link colors, go to the STYLE tags and edit the ssmItems colors
*/
YOffset=180; // no quotes!!
staticYOffset=20; // no quotes!!
XOffset=10; // no quotes!!
slideSpeed=20 // no quotes!!
waitTime=500; // no quotes!! this sets the time the menu stays out for after the mouse goes off it.
menuBGColor="black";
menuIsStatic="yes";
menuWidth=200; // Must be a multiple of 10! no quotes!!
menuCols=1;
hdrFontFamily="verdana";
hdrFontSize="2";
hdrFontColor="White";
hdrBGColor="black";
hdrAlign="left";
hdrVAlign="center";
hdrHeight="20";
linkFontFamily="Verdana";
linkFontSize="1";
linkBGColor="white";
linkOverBGColor="#FFFF99";
linkTarget="_top";
linkAlign="left";
barBGColor="#2d2d86";
barFontFamily="Verdana";
barFontSize="2";
barFontColor="White";
barVAlign="center";
barWidth=20; // no quotes!!
barText='MAP OPTIONS' 


// ssmItems[...]=[name, link, target, colspan, endrow, Visibility, ModString] - leave 'link' and 'target' blank to make a header
addHdr("Show Fishin Spots For...");
addItem("Walleye", "", "", 1, 1, checkMenuCookie("Species", "W", "T"),"Species:W");
addItem("Muskie", "", "", 1, 1, checkMenuCookie("Species", "M", "F"),"Species:M");
addItem("Pike", "", "", 1, 1, checkMenuCookie("Species", "P", "F"),"Species:P");
addItem("Largemouth Bass", "", "", 1, 1, checkMenuCookie("Species", "L", "F"),"Species:L");
addItem("Smallmouth Bass", "", "", 1, 1, checkMenuCookie("Species", "S", "F"),"Species:S");
addItem("Trout", "", "", 1, 1, checkMenuCookie("Species", "T", "F"),"Species:T");
addItem("Panfish", "", "", 1, 1, checkMenuCookie("Species", "C", "F"),"Species:C");

addHdr("Show Structure Types ...");
addItem("Rocks", "", "", 1, 1, checkMenuCookie("StructureType", "R", "F"),"StructureType:R");
addItem("Weeds", "", "", 1, 1, checkMenuCookie("StructureType", "W", "F"),"StructureType:W");
addItem("Timber", "", "", 1, 1, checkMenuCookie("StructureType", "T", "F"),"StructureType:T");
addItem("Sand", "", "", 1, 1, checkMenuCookie("StructureType", "S", "F"),"StructureType:S");
addItem("Drop Off", "", "", 1, 1, checkMenuCookie("StructureType", "D", "F"),"StructureType:D");
addItem("Hump/Bar", "", "", 1, 1, checkMenuCookie("StructureType", "H", "F"),"StructureType:H");
addItem("Inside Turn", "", "", 1, 1, checkMenuCookie("StructureType", "I", "F"),"StructureType:I");


addHdr("Time of Year ...");
addItem("Spring", "", "", 1, 1, checkMenuCookie("TimeOfYear", "1", "F"),"TimeOfYear:1");
addItem("Summer", "", "", 1, 1, checkMenuCookie("TimeOfYear", "2", "F"),"TimeOfYear:2");
addItem("Fall", "", "", 1, 1, checkMenuCookie("TimeOfYear", "3", "F"),"TimeOfYear:3");
addItem("Winter", "", "", 1, 1, checkMenuCookie("TimeOfYear", "4", "F"),"TimeOfYear:4");

//addHdr("Other Important Stuff ...");
//addItem("Boat Landings", "", "", 1, 1, "F","Other:L");
//addItem("Bait Shops", "", "", 1, 1, "F","Other:S");
//addItem("Hotels & Resorts", "", "", 1, 1, "F","Other:H");
//addItem("Campgrounds", "", "", 1, 1, "F","Other:C");
//addItem("Restaurants", "", "", 1, 1,"F","Other:R");


//buildMenu();

