// n6ox_menu2.js
// Script by STC Network Systems www.stcllp.com

// Configure menu styles below
// NOTE: To edit the link colors, go to the STYLE tags and edit the ssm2Items colors
//*

YOffset = 150; // pixels from top (Def=150) no quotes!!
XOffset = 0; // pixels from left (Def=0)
staticYOffset = 30; // pixels from top when moved (Def=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 = "#000000";
menuIsStatic = "yes"; //this sets whether menu should stay static on the screen
menuWidth = 150; // Must be a multiple of 10! no quotes!!
menuCols = 2;
hdrFontFamily = "verdana";
hdrFontSize = "2";
hdrFontColor = "black";
//hdrBGColor = "#170088";
hdrBGColor = "#CCCCCC";
hdrAlign = "left";
hdrVAlign = "center";
hdrHeight = "15";
linkFontFamily = "Verdana";
linkFontSize = "2";
linkBGColor = "white";
//linkOverBGColor = "#FFFF99";
linkOverBGColor = "#007722";
linkTarget = "_top";
linkAlign = "Left";
barBGColor = "#FF3300"; //orig. green color "#007722"
//barBGColor = "#444444";
barFontFamily = "Verdana";
barFontSize = "2";
barFontColor = "white";
barVAlign = "center";
barWidth = 25; // no quotes!!
barText = "SITE MENU"; // <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
gnMenuItems = 0
ssmItems[gnMenuItems++]=["Main Pages"]; //create header
ssmItems[gnMenuItems++]=["Home Page", "http://www.n6ox.com", ""];
ssmItems[gnMenuItems++]=["Log Search", "http://www.n6ox.com/log_search.html",""];
ssmItems[gnMenuItems++]=["Links", "http://www.n6ox.com/links.html", ""];
//ssmItems[gnMenuItems++]=["Reenactment", "http://www.n6ox.com/english.html", ""];
//ssmItems[gnMenuItems++]=["Medicine", "http://www.n6ox.com/medicine", ""];
//ssmItems[gnMenuItems++]=["Library", "http://www.n6ox.com/library", ""];

//ssmItems[gnMenuItems++]=["Faire", "http://www.n6ox.com/rpfs.html", "", 1, "no"]; //create two column row
ssmItems[gnMenuItems++]=["E-mail", "javaScript:stcllp('bob');", "",1];

ssmItems[gnMenuItems++]=["DXpedition Pictures", "", ""]; //create header
ssmItems[gnMenuItems++]=["TX5C 2007", "http://www.n6ox.com/pics_2007_tx5c/", ""];
ssmItems[gnMenuItems++]=["3B7C 2007", "http://www.n6ox.com/pics_2007_3b7c/", ""];
ssmItems[gnMenuItems++]=["XT2C 2007", "http://www.n6ox.com/pics_2007_xt/", ""];
ssmItems[gnMenuItems++]=["Peter I 2006", "http://www.n6ox.com/pics_2006_p1/", ""];
ssmItems[gnMenuItems++]=["Peter I 2005", "http://www.n6ox.com/pics_2005_p1/", ""];
ssmItems[gnMenuItems++]=["JA/N6OX 2005", "http://www.n6ox.com/pics_2005_ja/", ""];

//ssmItems[gnMenuItems++]=["EW/N6OX", "http://www.n6ox.com/pics_ew/", ""];
//ssmItems[gnMenuItems++]=["YT6OX", "http://www.n6ox.com/pics_lu/", ""];
//ssmItems[gnMenuItems++]=["LU/N6OX", "http://www.n6ox.com/pics_yt/", ""];
//ssmItems[gnMenuItems++]=["Corporate Site", "http://www.n6ox.com/yt_pics/", "_new"];
if (gbAlert == "T")
{
    ssmItems[gnMenuItems++]=["&gt;&gt;&nbsp;Alert&nbsp;&lt;&lt;", "http://www.n6ox.com/alert.html", "_new"];
}

buildMenu();


