var MaxSb = 0; // Counter to indicate the no of menu headings

var SbHtm = new Array();
var SbTxt = new Array();

var SbTit = new Array(); // optional array to hold text for alt text.
var SbSta = new Array(); // optional array to hold text status bar.
var SbCol = new Array(); // optional array to hold the bar color. (blu/grn/yel/red)
var SbSpa = new Array(); // optional array to specify no of spaces before start of field

//
// var Sta_is_Txt = 0; // if "true" then the status line is the same
                       // as SbTxt, but only if SbSta[n] is not defined.
		       // if Sta_is_Txt is not defined, then it defaults
		       // to true"

//  if "*" is the 1st char of SbHtm or SbTxt then
//      that line is treated as a main menu heading (will be in gray)
//
//  if "?" is the 1st char of SbHtm or SbTxt then
//      the "arrow" for the next page will not appear in the arg list.
//      This is needed if you wish to pass other args to the url.
//
//  if "#" is the 1st char of SbHtm (after any "*" or "?"), then
//      the menu heading is treated as if it has no link.
//  if "#" is the 2nd-on char of SbHtm (after any "*" or "?"). then
//      the menu heading will have a link, but pointing nowhere.
//
//  if "!" is the 1st char of SbHtm then the rest of the line is interpreted
//      as javascript. Don't forget that all quotes inside 'SbHtm' should be precedeed by \\ (double slashes)
//
// To indicate second level (gray), put a "*" at the beginning of either SbHtm or SbTxt ;
//
// To indicate third level (white), no star ;
//
SbHtm[++MaxSb]="*/Research/TNT/index.html";
SbTxt[  MaxSb]="TNT Home";
SbTit[  MaxSb]="TNT Home";


SbHtm[++MaxSb]="*/Research/TNT/WEB/Software/software.html";
SbTxt[  MaxSb]="TNT Software";
SbTit[  MaxSb]="TNT Software";

SbHtm[++MaxSb]="*lsm2-index.html";
SbTxt[  MaxSb]="Logistic Substitution Model II";
SbTit[  MaxSb]="Logistic Substitution Model II";

SbHtm[++MaxSb]="lsm2-features.html";
SbTxt[  MaxSb]="Features";
SbTit[  MaxSb]="Features";

SbHtm[++MaxSb]="lsm2-install.html";
SbTxt[  MaxSb]="Installation";
SbTit[  MaxSb]="Installation";

SbHtm[++MaxSb]="lsm2-download.html";
SbTxt[  MaxSb]="Download";
SbTit[  MaxSb]="Download";

SbHtm[++MaxSb]="lsm2-userguide.html?sb=4";
SbTxt[  MaxSb]="Users Guide";
SbTit[  MaxSb]="Users Guide";

SbHtm[++MaxSb]="lsm2-screenshots.html";
SbTxt[  MaxSb]="Screen Shots";
SbTit[  MaxSb]="Screen Shots";

SbHtm[++MaxSb]="lsm2-literature.html";
SbTxt[  MaxSb]="Literature";
SbTit[  MaxSb]="Literature";

SbHtm[++MaxSb]="lsm2-links.html";
SbTxt[  MaxSb]="Links";
SbTit[  MaxSb]="Links";

SbHtm[++MaxSb]="lsm2-license.html";
SbTxt[  MaxSb]="License";
SbTit[  MaxSb]="License";



