//-------------------------------------------------------------------------
// PrintShop101.com Navigation Menu Definitions.  Syntax is as follows:
//-------------------------------------------------------------------------
//
// The insert statement for the top-level (root) folder is:
//
//    fT = gFld(Label, Reference, SUID)
//
// The insert statement for other folders is:
//
//    folderid = insFld(ContainingFolderid, gFld(Label, Reference, SUID))
//
// The insert statement for a document is normally:
//
//    insDoc(ContainingFolderid, gLnk(Label, Reference, SUID))
//
// If a document needs to be identified (e.g. when setting individual icons,
// fonts, status bar text or target window name), the insert statement is:
//
//    docid = insDoc(ContainingFolderid, gLnk(Label, Reference, SUID))
//
//-------------------------------------------------------------------------
//
// Where:
//    folderid              Any name used to identify the folder    (Req; no quotes)
//
//    docid                 Any name used to identify the document  (Opt; no quotes)
//
//    ContainingFolderid    The previously defined identifier of    (Req; no quotes)
//                          the folder "containing" this item
//
//    Label                 Text description which appears on       (Req; with quotes)
//                          the menu for the folder
//
//    Reference             The URL reference (may be set to        (Opt; with quotes)
//                          blanks or null)
//
//    SUID                  The Surrogate Unique IDentifier         (Opt; with quotes)
//                          (This is the value that an individual
//                          HTML file references when using the
//                          "SetNavNode()" Javascript function to
//                          highlight this entry, e.g.
//                             SetNavNode("HOME")
//
//-------------------------------------------------------------------------
// 2004-09-24 GLR - Initial definition
//-------------------------------------------------------------------------


//-------------------------------------------------------------------------
// Define custom icons (only used if menu icons are being shown)
//-------------------------------------------------------------------------
addImage("pdf",  "pdf.gif")
addImage("pdfo", "pdfo.gif")
addImage("appl", "appl.gif")
addImage("applo","applo.gif")

//-------------------------------------------------------------------------
// Start the definition of the navigation menu
//-------------------------------------------------------------------------
fT = gFld("PrintShop101")

//-------------------------------------------------------------------------
// Home Page
//-------------------------------------------------------------------------
   insDoc(fT, gLnk("<b>Home page</b>",           "content1.htm",                        "HOME"))

//-------------------------------------------------------------------------
// Who Needs it?
//-------------------------------------------------------------------------
   insDoc(fT, gLnk("<b>Who Needs It?</b>",       "Needs_group/needsmenu.htm",           "WHONEEDS"))

//-------------------------------------------------------------------------
// Contents
//-------------------------------------------------------------------------
   lev2 = insFld(fT, gFld("<b>Contents</b>",     "Sections/contentlist.htm",            "CONTENTS"))
       insDoc(lev2, gLnk(" Chapter List",        "Contents_files/menupix.htm",   "CHAPLIST"))
       demo = insDoc(lev2, gLnk(" Working Demo", "Demo_101/premenu.htm",        "DEMO"))
       demo.setTarget("_new")
       if ( showMenuIcons ) demo.setIcon("appl","applo")

//-------------------------------------------------------------------------
// Motivation
//-------------------------------------------------------------------------
   lev2 = insFld(fT, gFld("<b>Motivation</b>",   "Sections/motivationA.htm",            "MOTIVE"))
       insDoc(lev2, gLnk("Certification",        "Sections/motivationB.htm",     "CERTIFY"))
       insDoc(lev2, gLnk("Time",                 "Sections/motivationC.htm",     "TIME"))
       insDoc(lev2, gLnk("Money",                "Sections/motivationD.htm",     "MONEY"))
       insDoc(lev2, gLnk("Respect",              "Sections/motivationE.htm",     "RESPECT"))

//-------------------------------------------------------------------------
// Special Features
//-------------------------------------------------------------------------
   lev2 = insFld(fT, gFld("<b>Special Features</b>", "Sections/specfeatures.htm",       "SPECFEAT"))
       idxg = insDoc(lev2, gLnk("Index/Glossary", "Index_Glossary/indexmenu.htm", "INDEX"))
       idxg.setStatusBar("Index and Glossary")
       insDoc(lev2, gLnk("Language",             "Sections/language.htm",        "LANG"))
       insDoc(lev2, gLnk("Modes",                "Sections/modes.htm",           "MODES"))
       insDoc(lev2, gLnk("One-Click",            "Sections/single_click.htm",    "CLICK"))
       insDoc(lev2, gLnk("Scoring/Tests",        "Sections/Tests1.htm",          "TESTS"))
       insDoc(lev2, gLnk("Version 2 changes",    "V2 stuff/V2 Features1.htm",    "VER2"))

//-------------------------------------------------------------------------
// About the Program
//-------------------------------------------------------------------------
   lev2 = insFld(fT, gFld("<b>About the Program</b>","Sections/author.htm",             "AUTHOR"))
       insDoc(lev2, gLnk("FAQs",                 "FAQ/faqset.htm",               "FAQ"))
       insDoc(lev2, gLnk("Links",                "Sections/linkset.htm",         "LINKS"))
       insDoc(lev2, gLnk("Contact",              "Sections/contact.htm",         "CONTACT"))
       insDoc(lev2, gLnk("Testimonials",         "Sections/testimonialset.htm",  "TESTIFY"))

//-------------------------------------------------------------------------
// Order Information
//-------------------------------------------------------------------------
   insDoc(fT, gLnk("<b>How to Order</b>",        "Ordersheet/order_selection.htm",      "ORDER"))

//-------------------------------------------------------------------------
// Extra Offers
//-------------------------------------------------------------------------
   lev2 = insFld(fT, gFld("<b>Extra Offers</b>", "Sections/extra.htm",                  "EXTRA"))
       safety = insDoc(lev2, gLnk("Safety Posters",       "safety.htm",                   "SAFETY"))
	 safety.setTarget("_new")
       pdf = insDoc(lev2, gLnk("Sales Plan",     "PDFfiles/salesplan.pdf",       "SALES"))
       if ( showMenuIcons ) pdf.setIcon("pdf","pdfo")
       ipe = insDoc(lev2, gLnk("Indiv Perf Eval","IPE.htm",                      "IPE"))
       ipe.setStatusBar("Individual Performance Evaluation")

//-------------------------------------------------------------------------
// Send Brochure
//-------------------------------------------------------------------------
   insDoc(fT, gLnk("<b>Send Brochure</b>",       "keypage1.htm",                        "BROCHURE"))


