/******************************************************************************
* This file defines the tree menu with its items and submenus.               *
******************************************************************************/
// Customized exclusively for Woodbridge Community Church,  by Tom Ells
// User-defined tree menu data.

var treeMenuName       = "myMenu_1.0";    // Make this unique for each tree menu.
var treeMenuDays       = 1;               // Number of days to keep the cookie.
var treeMenuFrame      = "menuFrame";     // Name of the menu frame.
var treeMenuImgDir     = "graphics/"      // Path to graphics directory.
var treeMenuBackground = "";              // Background image for menu frame.   
var treeMenuBgColor    = "#000066";       // Color for menu frame background.   
var treeMenuFgColor    = "#ffffff";       // Color for menu item text.
var treeMenuHiBg       = "#ffffff";       // Color for selected item background.
var treeMenuHiFg       = "#000000";       // Color for selected item text.
var treeMenuFont       = 
      "MS Sans Serif,Arial,Helvetica";    // Text font face.
var treeMenuFontSize   = 1;               // Text font size.
var treeMenuRoot       = "Bible study lessons";     // Text for the menu root.
var treeMenuFolders    = 0;               // Sets display of '+' and '-' icons.
var treeMenuAltText    = true;            // Use menu item text for icon image ALT text.

// Define the items for the top-level of the tree menu.

var treeMenu = null;
treeMenu = new TreeMenu();
treeMenu.addItem(new TreeMenuItem("Class Schedule",     "treeMain.html",                "mainFrame"));
treeMenu.addItem(new TreeMenuItem("Calendar 2011-2012", "Calendar-current.html",        "mainFrame"));
treeMenu.addItem(new TreeMenuItem("Mission Statement",  "MissionStmt.html",             "mainFrame"));
treeMenu.addItem(new TreeMenuItem("About Marci Ford",   "aboutMarci.html",              "mainFrame"));
treeMenu.addItem(new TreeMenuItem("Discipleship",       "Book/Discipleship/D1.html",    "mainFrame"));
treeMenu.addItem(new TreeMenuItem("Old Testament",      "Book/Foundations/Pent01.html", "mainFrame"));
treeMenu.addItem(new TreeMenuItem("New Testament",      "Book/Foundations/NewTestament01.html", "mainFrame"));

// Discipleship

var DS = null;
DS = new TreeMenu();
DS.addItem(new TreeMenuItem("Salvation & the Holy Spirit", "Book/Discipleship/D1.html", "mainFrame"));
DS.addItem(new TreeMenuItem("Bible study & prayer",        "Book/Discipleship/D2.html", "mainFrame"));
DS.addItem(new TreeMenuItem("How we got the Bible",        "audio/audio.php?ID=D3&amp;Lesson=Bible","mainFrame"));
treeMenu.items[4].makeSubmenu(DS);

// Old Testament

var OT = null;
OT = new TreeMenu();
OT.addItem(new TreeMenuItem("OT Foundations",          "Book/Foundations/Pent01.html",  "mainFrame"));
OT.addItem(new TreeMenuItem("Genesis",                 "Book/Gen/GenInt.html",          "mainFrame"));
OT.addItem(new TreeMenuItem("Exodus",                  "Book/Ex/ExInt.html",            "mainFrame"));
OT.addItem(new TreeMenuItem("Leviticus",               "Book/Lev/Lev01.html",           "mainFrame"));
OT.addItem(new TreeMenuItem("Numbers",                 "Book/Num/Num05.html",           "mainFrame"));
OT.addItem(new TreeMenuItem("Deuteronomy",             "Book/Deut/Deut01.html",         "mainFrame"));
OT.addItem(new TreeMenuItem("Joshua",                  "Book/Josh/Josh01.html",         "mainFrame"));
OT.addItem(new TreeMenuItem("Judges",                  "Book/Judg/Judg01.html",         "mainFrame"));
OT.addItem(new TreeMenuItem("Ruth",                    "Book/Ruth/Ruth01.html",         "mainFrame"));
OT.addItem(new TreeMenuItem("1 & 2 Samuel",            "Book/Sam/SamInt.html",          "mainFrame"));
OT.addItem(new TreeMenuItem("1 Kings",                 "Book/Kings/1Kings01.html",      "mainFrame"));
OT.addItem(new TreeMenuItem("2 Kings",                 "Book/Kings/2Kings20.html",      "mainFrame"));
OT.addItem(new TreeMenuItem("Judah & the Prophets",    "Book/Judah/Judah01.html",       "mainFrame"));
OT.addItem(new TreeMenuItem("Judah's Faithful Remnant","Book/Faithful/Faithful01.html", "mainFrame"));
OT.addItem(new TreeMenuItem("Return to Jerusalem",     "Book/Return/Return01.html",     "mainFrame"));
treeMenu.items[5].makeSubmenu(OT);

// New Testament


var NT = null;
NT = new TreeMenu();
NT.addItem(new TreeMenuItem("NT Foundations",             "Book/Foundations/NewTestament01.html", "mainFrame"));
NT.addItem(new TreeMenuItem("Jesus' Ministry to Galilee", "Book/Luke/Luke01.html",  "mainFrame"));
NT.addItem(new TreeMenuItem("It is Finished",             "Book/Luke2/Luke201.html","mainFrame"));
NT.addItem(new TreeMenuItem("The Persecuted Church",      "Book/Acts/Acts201.html", "mainFrame"));
NT.addItem(new TreeMenuItem("Paul's Missionary Journeys", "Book/NT4/nt401.html",    "mainFrame"));
NT.addItem(new TreeMenuItem("Paul's Third Journey",       "Book/NT5/nt501.html",    "mainFrame"));
NT.addItem(new TreeMenuItem("Paul's Journey to Rome",     "Book/NT6/nt601.html",    "mainFrame"));
NT.addItem(new TreeMenuItem("Paul's Letters from Rome",   "Book/NT7/nt701.html",    "mainFrame"));
NT.addItem(new TreeMenuItem("Revelation",                 "Book/Rev/rev01.html",    "mainFrame"));
treeMenu.items[6].makeSubmenu(NT);

// OLD TESTAMENT FOUNDATIONS

var OTFnd = null;
OTFnd = new TreeMenu();
OTFnd.addItem(new TreeMenuItem("Pentateuch I",  "Book/Foundations/Pent01.html", "mainFrame"));
OTFnd.addItem(new TreeMenuItem("Pentateuch II", "Book/Foundations/Pent02.html", "mainFrame"));
OTFnd.addItem(new TreeMenuItem("History III",   "Book/Foundations/Hist03.html", "mainFrame"));
OTFnd.addItem(new TreeMenuItem("History IV",    "Book/Foundations/Hist04.html", "mainFrame"));
OTFnd.addItem(new TreeMenuItem("History V",     "Book/Foundations/Hist05.html", "mainFrame"));
OTFnd.addItem(new TreeMenuItem("History VI",    "Book/Foundations/Hist06.html", "mainFrame"));
OTFnd.addItem(new TreeMenuItem("History VII",   "Book/Foundations/Hist07.html", "mainFrame"));
OT.items[0].makeSubmenu(OTFnd);

// GENESIS

var Gen = null;
Gen = new TreeMenu();
Gen.addItem(new TreeMenuItem("Guide book",                                "Book/Gen/GenInt.html",                      "mainFrame"));
Gen.addItem(new TreeMenuItem("Overview",                                  "audio/audio.php?ID=Gen&amp;Lesson=Overview","mainFrame"));
Gen.addItem(new TreeMenuItem("Creation",                                  "audio/audio.php?ID=Gen&amp;Lesson=01",      "mainFrame"));
Gen.addItem(new TreeMenuItem("The fall of man",                           "audio/audio.php?ID=Gen&amp;Lesson=02",      "mainFrame"));
Gen.addItem(new TreeMenuItem("The beginning of judgement",                "audio/audio.php?ID=Gen&amp;Lesson=03",      "mainFrame"));
Gen.addItem(new TreeMenuItem("Dispersion of the nations",                 "audio/audio.php?ID=Gen&amp;Lesson=04",      "mainFrame"));
Gen.addItem(new TreeMenuItem("The promises of a new beginning",           "audio/audio.php?ID=Gen&amp;Lesson=05",      "mainFrame"));
Gen.addItem(new TreeMenuItem("The promise of a new people",               "audio/audio.php?ID=Gen&amp;Lesson=06",      "mainFrame"));
Gen.addItem(new TreeMenuItem("The son of promise",                        "audio/audio.php?ID=Gen&amp;Lesson=07",      "mainFrame"));
Gen.addItem(new TreeMenuItem("Selfishness among the people of promise",   "audio/audio.php?ID=Gen&amp;Lesson=08",      "mainFrame"));
Gen.addItem(new TreeMenuItem("Selfishness among the people of promise 2", "audio/audio.php?ID=Gen&amp;Lesson=09",      "mainFrame"));
Gen.addItem(new TreeMenuItem("Jacob makes peace with his brother",        "audio/audio.php?ID=Gen&amp;Lesson=10",      "mainFrame"));
Gen.addItem(new TreeMenuItem("Jacobs uncertain control of his sons",      "audio/audio.php?ID=Gen&amp;Lesson=11",      "mainFrame"));
Gen.addItem(new TreeMenuItem("Joseph sold into slavery",                  "audio/audio.php?ID=Gen&amp;Lesson=12",      "mainFrame"));
Gen.addItem(new TreeMenuItem("From prison to power",                      "audio/audio.php?ID=Gen&amp;Lesson=13",      "mainFrame"));
Gen.addItem(new TreeMenuItem("The sons of Jacob are tested",              "audio/audio.php?ID=Gen&amp;Lesson=14",      "mainFrame"));
Gen.addItem(new TreeMenuItem("Reconciliation of Israel's family",         "audio/audio.php?ID=Gen&amp;Lesson=15",      "mainFrame"));
Gen.addItem(new TreeMenuItem("Israel goes to Egypt",                      "audio/audio.php?ID=Gen&amp;Lesson=16",      "mainFrame"));
Gen.addItem(new TreeMenuItem("The blessings of the sons of Israel",       "audio/audio.php?ID=Gen&amp;Lesson=17",      "mainFrame"));
OT.items[1].makeSubmenu(Gen);

// EXODUS

var Ex = null;
Ex = new TreeMenu();
Ex.addItem(new TreeMenuItem("Guide book",                           "Book/Ex/ExInt.html",                  "mainFrame"));
Ex.addItem(new TreeMenuItem("Birth pains",                          "audio/audio.php?ID=Ex&amp;Lesson=01", "mainFrame"));
Ex.addItem(new TreeMenuItem("God's call to Moses",                  "audio/audio.php?ID=Ex&amp;Lesson=02", "mainFrame"));
Ex.addItem(new TreeMenuItem("The Word & Name of the Lord",          "audio/audio.php?ID=Ex&amp;Lesson=03", "mainFrame"));
Ex.addItem(new TreeMenuItem("The judgement on Egypt",               "audio/audio.php?ID=Ex&amp;Lesson=04", "mainFrame"));
Ex.addItem(new TreeMenuItem("Passover the last night in Egypt",     "audio/audio.php?ID=Ex&amp;Lesson=05", "mainFrame"));
Ex.addItem(new TreeMenuItem("Consecration, salvation & celebration","audio/audio.php?ID=Ex&amp;Lesson=06", "mainFrame"));
Ex.addItem(new TreeMenuItem("Grumbling and grace",                  "audio/audio.php?ID=Ex&amp;Lesson=07", "mainFrame"));
Ex.addItem(new TreeMenuItem("War and peace",                        "audio/audio.php?ID=Ex&amp;Lesson=08", "mainFrame"));
Ex.addItem(new TreeMenuItem("Receiving the Ten Commandments",       "audio/audio.php?ID=Ex&amp;Lesson=09", "mainFrame"));
Ex.addItem(new TreeMenuItem("Life under God's Lordship",            "audio/audio.php?ID=Ex&amp;Lesson=10", "mainFrame"));
Ex.addItem(new TreeMenuItem("The covenant now confirmed",           "audio/audio.php?ID=Ex&amp;Lesson=11", "mainFrame"));
Ex.addItem(new TreeMenuItem("The Tabernacle part 1",                "audio/audio.php?ID=Ex&amp;Lesson=12", "mainFrame"));
Ex.addItem(new TreeMenuItem("The Tabernacle part 2",                "audio/audio.php?ID=Ex&amp;Lesson=13", "mainFrame"));
Ex.addItem(new TreeMenuItem("Idolatry & intercession",              "audio/audio.php?ID=Ex&amp;Lesson=14", "mainFrame"));
Ex.addItem(new TreeMenuItem("The Glory of the Lord",                "audio/audio.php?ID=Ex&amp;Lesson=15", "mainFrame"));
OT.items[2].makeSubmenu(Ex);

// LEVITICUS

var Lev = null;
Lev = new TreeMenu();
Lev.addItem(new TreeMenuItem("The sacrificial system",                    "Book/Lev/Lev01.html", "mainFrame"));
Lev.addItem(new TreeMenuItem("The priests & their duties",                "Book/Lev/Lev02.html", "mainFrame"));
Lev.addItem(new TreeMenuItem("The holiness code",                         "Book/Lev/Lev03.html", "mainFrame"));
Lev.addItem(new TreeMenuItem("Old Testament Law vs. New Testament Grace", "Book/Lev/Lev04.html", "mainFrame"));
OT.items[3].makeSubmenu(Lev);

// NUMBERS

var Num = null;
Num = new TreeMenu();
Num.addItem(new TreeMenuItem("Preparing to enter the promised land", "Book/Num/Num05.html", "mainFrame"));
Num.addItem(new TreeMenuItem("The Israelites leave Sinai",           "Book/Num/Num06.html", "mainFrame"));
Num.addItem(new TreeMenuItem("First glimpse of Canaan",              "Book/Num/Num07.html", "mainFrame"));
Num.addItem(new TreeMenuItem("God's reassurance",                    "Book/Num/Num08.html", "mainFrame"));
Num.addItem(new TreeMenuItem("Israel moves to Moab",                 "Book/Num/Num09.html", "mainFrame"));
Num.addItem(new TreeMenuItem("Balak and Balaam",                     "Book/Num/Num10.html", "mainFrame"));
Num.addItem(new TreeMenuItem("Moses' final days",                    "Book/Num/Num11.html", "mainFrame"));
Num.addItem(new TreeMenuItem("Israel settles in Transjordan",        "Book/Num/Num12.html", "mainFrame"));
OT.items[4].makeSubmenu(Num);

// DEUTERONOMY
var Deut = null;
Deut = new TreeMenu();
Deut.addItem(new TreeMenuItem("Remembering the past",      "Book/Deut/Deut01.html", "mainFrame"));
Deut.addItem(new TreeMenuItem("Call to obedience",         "Book/Deut/Deut02.html", "mainFrame"));
Deut.addItem(new TreeMenuItem("Principles of the Covenant","Book/Deut/Deut03.html", "mainFrame"));
Deut.addItem(new TreeMenuItem("Worship and debt",          "Book/Deut/Deut04.html", "mainFrame"));
Deut.addItem(new TreeMenuItem("Festivals & legal system",  "Book/Deut/Deut05.html", "mainFrame"));
Deut.addItem(new TreeMenuItem("Warfare & murder",          "Book/Deut/Deut06.html", "mainFrame"));
Deut.addItem(new TreeMenuItem("Miscellaneous laws",        "Book/Deut/Deut07.html", "mainFrame"));
Deut.addItem(new TreeMenuItem("Mt. Ebal & Mt. Gerizim",    "Book/Deut/Deut08.html", "mainFrame"));
Deut.addItem(new TreeMenuItem("Renewal of the Covenant",   "Book/Deut/Deut09.html", "mainFrame"));
Deut.addItem(new TreeMenuItem("Renewal of the Covenant 2", "Book/Deut/Deut10.html", "mainFrame"));
Deut.addItem(new TreeMenuItem("Moses' last day",           "Book/Deut/Deut11.html", "mainFrame"));
OT.items[5].makeSubmenu(Deut);

// JOSHUA

var Josh = null;
Josh = new TreeMenu();
Josh.addItem(new TreeMenuItem("Be strong & courageous",         "Book/Josh/Josh01.html", "mainFrame"));
Josh.addItem(new TreeMenuItem("Crossing the Jordan",            "Book/Josh/Josh02.html", "mainFrame"));
Josh.addItem(new TreeMenuItem("The battle of Jericho",          "Book/Josh/Josh03.html", "mainFrame"));
Josh.addItem(new TreeMenuItem("The battle at Ai",               "Book/Josh/Josh04.html", "mainFrame"));
Josh.addItem(new TreeMenuItem("Renewal & deception",            "Book/Josh/Josh05.html", "mainFrame"));
Josh.addItem(new TreeMenuItem("Israel conquers the land",       "Book/Josh/Josh06.html", "mainFrame"));
Josh.addItem(new TreeMenuItem("Division of the promised land",  "Book/Josh/Josh07.html", "mainFrame"));
Josh.addItem(new TreeMenuItem("Division of the promised land 2","Book/Josh/Josh08.html", "mainFrame"));
OT.items[6].makeSubmenu(Josh);

// JUDGES

var Judg = null;
Judg = new TreeMenu();
Judg.addItem(new TreeMenuItem("Setting the stage",           "Book/Judg/Judg01.html", "mainFrame"));
Judg.addItem(new TreeMenuItem("Deborah - the judge",         "Book/Judg/Judg02.html", "mainFrame"));
Judg.addItem(new TreeMenuItem("Gideon - part I",             "Book/Judg/Judg03.html", "mainFrame"));
Judg.addItem(new TreeMenuItem("Gideon - part II",            "Book/Judg/Judg04.html", "mainFrame"));
Judg.addItem(new TreeMenuItem("Abimelech",                   "Book/Judg/Judg05.html", "mainFrame"));
Judg.addItem(new TreeMenuItem("Jepthah & Minor Judges",      "Book/Judg/Judg06.html", "mainFrame"));
Judg.addItem(new TreeMenuItem("Samson's birth & marriage",   "Book/Judg/Judg07.html", "mainFrame"));
Judg.addItem(new TreeMenuItem("Samson - the judge",          "Book/Judg/Judg08.html", "mainFrame"));
Judg.addItem(new TreeMenuItem("Micah, the priests & Danites","Book/Judg/Judg09.html", "mainFrame"));
Judg.addItem(new TreeMenuItem("Civil war in Israel",         "Book/Judg/Judg10.html", "mainFrame"));
OT.items[7].makeSubmenu(Judg);

// RUTH

var Ruth = null;
Ruth = new TreeMenu();
Ruth.addItem(new TreeMenuItem("Naomi", "Book/Ruth/Ruth01.html", "mainFrame"));
Ruth.addItem(new TreeMenuItem("Boaz",  "Book/Ruth/Ruth02.html", "mainFrame"));
OT.items[8].makeSubmenu(Ruth);

// 1 & 2 SAMUEL

var Sam = null;
Sam = new TreeMenu();Sam.addItem(new TreeMenuItem("Guide book", "Book/Sam/SamInt.html", "mainFrame"));
OT.items[9].makeSubmenu(Sam);

// 1 KINGS

var King1 = null;
King1 = new TreeMenu();
King1.addItem(new TreeMenuItem("Solomon declared successor",    "Book/Kings/1Kings01.html", "mainFrame"));
King1.addItem(new TreeMenuItem("The succession",                "Book/Kings/1Kings02.html", "mainFrame"));
King1.addItem(new TreeMenuItem("The wisdom of Solomon ",        "Book/Kings/1Kings03.html", "mainFrame"));
King1.addItem(new TreeMenuItem("The temple & the palace",       "Book/Kings/1Kings04.html", "mainFrame"));
King1.addItem(new TreeMenuItem("Dedication of the temple",      "Book/Kings/1Kings05.html", "mainFrame"));
King1.addItem(new TreeMenuItem("Solomon's great successes",     "Book/Kings/1Kings06.html", "mainFrame"));
King1.addItem(new TreeMenuItem("Solomon's great failures",      "Book/Kings/1Kings07.html", "mainFrame"));
King1.addItem(new TreeMenuItem("The kingdom divides",           "Book/Kings/1Kings08.html", "mainFrame"));
King1.addItem(new TreeMenuItem("God's judgement on His kings",  "Book/Kings/1Kings09.html", "mainFrame"));
King1.addItem(new TreeMenuItem("Abijah & Asa, kings of Judah",  "Book/Kings/1Kings10.html", "mainFrame"));
King1.addItem(new TreeMenuItem("Israel's evil kings",           "Book/Kings/1Kings11.html", "mainFrame"));
King1.addItem(new TreeMenuItem("The struggle for Israel's soul","Book/Kings/1Kings12.html", "mainFrame"));
King1.addItem(new TreeMenuItem("Elijah & the prophets of Baal", "Book/Kings/1Kings13.html", "mainFrame"));
King1.addItem(new TreeMenuItem("Elijah and the queen",          "Book/Kings/1Kings14.html", "mainFrame"));
King1.addItem(new TreeMenuItem("War between Israel & Aram",     "Book/Kings/1Kings15.html", "mainFrame"));
King1.addItem(new TreeMenuItem("Humility & repentance",         "Book/Kings/1Kings16.html", "mainFrame"));
King1.addItem(new TreeMenuItem("King Ahab's final battle",      "Book/Kings/1Kings17.html", "mainFrame"));
King1.addItem(new TreeMenuItem("Jehoshaphat - king of Judah",   "Book/Kings/1Kings18.html", "mainFrame"));
King1.addItem(new TreeMenuItem("Elijah's final days",           "Book/Kings/1Kings19.html", "mainFrame"));
OT.items[10].makeSubmenu(King1);

// 2 KINGS

var King2 = null;
King2 = new TreeMenu();
King2.addItem(new TreeMenuItem("Elisha's ministry begins", "Book/Kings/2Kings20.html", "mainFrame"));
King2.addItem(new TreeMenuItem("Ministry among the people", "Book/Kings/2Kings21.html", "mainFrame"));
King2.addItem(new TreeMenuItem("Elisha & Naaman", "Book/Kings/2Kings22.html", "mainFrame"));
King2.addItem(new TreeMenuItem("The deliverance of God's people", "Book/Kings/2Kings23.html", "mainFrame"));
King2.addItem(new TreeMenuItem("Life & death", "Book/Kings/2Kings24.html", "mainFrame"));
King2.addItem(new TreeMenuItem("Jehu takes over", "Book/Kings/2Kings25.html", "mainFrame"));
King2.addItem(new TreeMenuItem("Jehu cleans house", "Book/Kings/2Kings26.html", "mainFrame"));
King2.addItem(new TreeMenuItem("The influence of a Godly leader", "Book/Kings/2Kings27.html", "mainFrame"));
King2.addItem(new TreeMenuItem("Storm clouds gathering", "Book/Kings/2Kings28.html", "mainFrame"));
King2.addItem(new TreeMenuItem("Impending doom", "Book/Kings/2Kings29.html", "mainFrame"));
King2.addItem(new TreeMenuItem("Israel taken into captivity", "Book/Kings/2Kings30.html", "mainFrame"));
OT.items[11].makeSubmenu(King2);

// JUDAH & THE PROPHETS 

var Judah = null;
Judah = new TreeMenu();
Judah.addItem(new TreeMenuItem("Northern Kingdom & Jonah",     "Book/Judah/Judah01.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("Judgment upon Israel",         "Book/Judah/Judah02.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("Visions of Amos",              "Book/Judah/Judah03.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("Marriage of Hosea",            "Book/Judah/Judah04.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("Case against Israel",          "Book/Judah/Judah05.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("Lord's love for Israel",       "Book/Judah/Judah06.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("The Lord's chosen Kings",      "Book/Judah/Judah07.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("The Lord's chosen Kings 2",    "Book/Judah/Judah08.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("Hezekiah restores worship",    "Book/Judah/Judah09.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("Hezekiah attacked by Assyria", "Book/Judah/Judah10.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("The Prophet Micah",            "Book/Judah/Judah11.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("The Prophet Micah 2",          "Book/Judah/Judah12.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("Manasseh & Amon",              "Book/Judah/Judah13.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("Josiah & Zepheniah",           "Book/Judah/Judah14.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("Josiah & Jeremiah",            "Book/Judah/Judah15.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("Josiah restores worship",      "Book/Judah/Judah16.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("Josiah's Sons Reign",          "Book/Judah/Judah17.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("Jehoiakim & Jeremiah",         "Book/Judah/Judah18.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("The first deportation",        "Book/Judah/Judah19.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("Mistreatment",                 "Book/Judah/Judah20.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("The second deportation",       "Book/Judah/Judah21.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("Jeremiah & the King",          "Book/Judah/Judah22.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("The fall of Jerusalem",        "Book/Judah/Judah23.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("The Judah remnant",            "Book/Judah/Judah24.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("The land & Babylonian remnant","Book/Judah/Judah25.html", "mainFrame"));
Judah.addItem(new TreeMenuItem("A future hope",                "Book/Judah/Judah26.html", "mainFrame"));
OT.items[12].makeSubmenu(Judah);
// Faithful Remnant

var Faithful = null;
Faithful = new TreeMenu();
Faithful.addItem(new TreeMenuItem("God calls Ezekiel",           "Book/Faithful/Faithful01.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("Ezekiel's ministry begins",   "Book/Faithful/Faithful02.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("God's judgment is coming!",   "Book/Faithful/Faithful03.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("Glory of the Lord departs",   "Book/Faithful/Faithful04.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("Lord reveals His judgment 1", "Book/Faithful/Faithful05.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("Lord reveals His judgment 2", "Book/Faithful/Faithful06.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("Restoration & blessing",      "Book/Faithful/Faithful07.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("God's plan moves forward"   , "Book/Faithful/Faithful08.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("Dry bones & sticks"         , "Book/Faithful/Faithful09.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("Prophecy against Gog"       , "Book/Faithful/Faithful10.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("Restoration of worship"     , "Book/Faithful/Faithful11.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("Daniel's first visions"     , "Book/Faithful/Faithful12.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("Daniel & King Belshazzar"   , "Book/Faithful/Faithful13.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("Daniel & King Darius"       , "Book/Faithful/Faithful14.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("Daniel's prayer"            , "Book/Faithful/Faithful15.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("First exiles return home"   , "Book/Faithful/Faithful16.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("Daniel's final vision"      , "Book/Faithful/Faithful17.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("Haggai, God's motivator"    , "Book/Faithful/Faithful18.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("Zechariah's Visions"       ,  "Book/Faithful/Faithful19.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("Zechariah encourages remnant","Book/Faithful/Faithful20.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("Opposition at the Temple"    ,"Book/Faithful/Faithful21.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("Things to come"              ,"Book/Faithful/Faithful22.html", "mainFrame"));
Faithful.addItem(new TreeMenuItem("The rejected king enthroned" ,"Book/Faithful/Faithful23.html", "mainFrame"));
OT.items[13].makeSubmenu(Faithful);
// Return to Jerusalem

var Return = null;
Return = new TreeMenu();
Return.addItem(new TreeMenuItem("A new queen",                 "Book/Return/Return01.html", "mainFrame"));
Return.addItem(new TreeMenuItem("The king's gate",             "Book/Return/Return02.html", "mainFrame"));
Return.addItem(new TreeMenuItem("Esther's challenge",          "Book/Return/Return03.html", "mainFrame"));
Return.addItem(new TreeMenuItem("An emotion filled day",       "Book/Return/Return04.html", "mainFrame"));
Return.addItem(new TreeMenuItem("Triumph and celebration",     "Book/Return/Return05.html", "mainFrame"));
Return.addItem(new TreeMenuItem("Preparation for the Journey", "Book/Return/Return06.html", "mainFrame"));
Return.addItem(new TreeMenuItem("The second group returns",    "Book/Return/Return07.html", "mainFrame"));
Return.addItem(new TreeMenuItem("Sin in Jerusalem",            "Book/Return/Return08.html", "mainFrame"));
Return.addItem(new TreeMenuItem("The people confess",          "Book/Return/Return09.html", "mainFrame"));
Return.addItem(new TreeMenuItem("Nehemiah's prayer",           "Book/Return/Return10.html", "mainFrame"));
Return.addItem(new TreeMenuItem("The third return",            "Book/Return/Return11.html", "mainFrame"));
Return.addItem(new TreeMenuItem("Jerusalem's enemies",         "Book/Return/Return12.html", "mainFrame"));
Return.addItem(new TreeMenuItem("Economic crisis",             "Book/Return/Return13.html", "mainFrame"));
Return.addItem(new TreeMenuItem("The completion of the wall",  "Book/Return/Return14.html", "mainFrame"));
Return.addItem(new TreeMenuItem("Changes in Jerusalem",        "Book/Return/Return15.html", "mainFrame"));
Return.addItem(new TreeMenuItem("The great assembly",          "Book/Return/Return16.html", "mainFrame"));
Return.addItem(new TreeMenuItem("Covenant of obedience",       "Book/Return/Return17.html", "mainFrame"));
Return.addItem(new TreeMenuItem("Jerusalem's new residents",   "Book/Return/Return18.html", "mainFrame"));
Return.addItem(new TreeMenuItem("Nehemiah - God's man",        "Book/Return/Return19.html", "mainFrame"));
Return.addItem(new TreeMenuItem("God's perspective",           "Book/Return/Return20.html", "mainFrame"));
Return.addItem(new TreeMenuItem("God’s covenant & glory",      "Book/Return/Return21.html", "mainFrame"));
Return.addItem(new TreeMenuItem("The day of the Lord",         "Book/Return/Return22.html", "mainFrame"));
OT.items[14].makeSubmenu(Return);

// NEW TESTAMENT FOUNDATIONS

var NTFnd = null;
NTFnd = new TreeMenu();
NTFnd.addItem(new TreeMenuItem("Inter-Testamental Period",   "audio/audio.php?ID=NT1&Lesson=00",     "mainFrame"));
NTFnd.addItem(new TreeMenuItem("Jesus' Galilean ministry",   "Book/Foundations/NewTestament01.html", "mainFrame"));
NTFnd.addItem(new TreeMenuItem("It Is Finished!",            "Book/Foundations/NewTestament02.html", "mainFrame"));
NTFnd.addItem(new TreeMenuItem("The persecuted church",      "Book/Foundations/NewTestament03.html", "mainFrame"));
NTFnd.addItem(new TreeMenuItem("Paul's missionary journeys", "Book/Foundations/NewTestament04.html", "mainFrame"));
NTFnd.addItem(new TreeMenuItem("Paul's third journey",       "Book/Foundations/NewTestament05.html", "mainFrame"));
NTFnd.addItem(new TreeMenuItem("Paul’s journey to Rome",     "Book/Foundations/NewTestament06.html", "mainFrame"));
NTFnd.addItem(new TreeMenuItem("Paul’s journey to Rome 2",   "Book/Foundations/NewTestament07.html", "mainFrame"));
NTFnd.addItem(new TreeMenuItem("Letters from Rome",          "Book/Foundations/NewTestament08.html", "mainFrame"));
NTFnd.addItem(new TreeMenuItem("Letters from Rome 2",        "Book/Foundations/NewTestament09.html", "mainFrame"));
NT.items[0].makeSubmenu(NTFnd);

// Jesus' Ministry to Galilee

var Luke = null;
Luke = new TreeMenu();
Luke.addItem(new TreeMenuItem("Introduction",                   "Book/Luke/Luke01.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("Jesus' Birth Announced",         "Book/Luke/Luke02.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("God’s Savior is Born",           "Book/Luke/Luke03.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("Jesus Presented at the Temple",  "Book/Luke/Luke04.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("John & Jesus",                   "Book/Luke/Luke05.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("Jesus’ Ministry Begins",         "Book/Luke/Luke06.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("Jesus Calls His First Disciples","Book/Luke/Luke07.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("Jesus’ Ministry Continues",      "Book/Luke/Luke08.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("Jesus is Challenged",            "Book/Luke/Luke09.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("Jesus’ Sermon on the Plain",     "Book/Luke/Luke10.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("Jesus and Relationships",        "Book/Luke/Luke11.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("Jesus and Relationships 2",      "Book/Luke/Luke12.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("Jesus’ Miracles",                "Book/Luke/Luke13.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("The Disciples’ 1st Mission Trip","Book/Luke/Luke14.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("Jesus’ Difficult Day",           "Book/Luke/Luke15.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("Recognition",                    "Book/Luke/Luke16.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("Challenges among the Disciples", "Book/Luke/Luke17.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("The Disciples' 2nd Mission Trip","Book/Luke/Luke18.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("Jesus, Martha & Mary",           "Book/Luke/Luke19.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("Jesus is Challenged Again",      "Book/Luke/Luke20.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("Jesus Teaches with Parables",    "Book/Luke/Luke21.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("Jesus Teaches about Life Issues","Book/Luke/Luke22.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("The Kingdom of God is at Hand",  "Book/Luke/Luke23.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("Jesus and the Pharisees",        "Book/Luke/Luke24.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("The Cost of Discipleship",       "Book/Luke/Luke25.html", "mainFrame"));
Luke.addItem(new TreeMenuItem("The Lost Son",                   "Book/Luke/Luke26.html", "mainFrame"));
NT.items[1].makeSubmenu(Luke);

// IT IS FINISHED

var Luke2 = null;
Luke2 = new TreeMenu();
Luke2.addItem(new TreeMenuItem("The Proper Use of Money",            "Book/Luke2/Luke201.html", "mainFrame"));
Luke2.addItem(new TreeMenuItem("Forgiveness, Faith & Kingdom of God","Book/Luke2/Luke202.html", "mainFrame"));
Luke2.addItem(new TreeMenuItem("Watch your Attitude!",               "Book/Luke2/Luke203.html", "mainFrame"));
Luke2.addItem(new TreeMenuItem("The Journey Ends",                   "Book/Luke2/Luke204.html", "mainFrame"));
Luke2.addItem(new TreeMenuItem("Arrival at Jerusalem",               "Book/Luke2/Luke205.html", "mainFrame"));
Luke2.addItem(new TreeMenuItem("Confrontation in Jerusalem",         "Book/Luke2/Luke206.html", "mainFrame"));
Luke2.addItem(new TreeMenuItem("Confrontation with the Sadducees",   "Book/Luke2/Luke207.html", "mainFrame"));
Luke2.addItem(new TreeMenuItem("Signs of the End Times",             "Book/Luke2/Luke208.html", "mainFrame"));
Luke2.addItem(new TreeMenuItem("Passover Seder",                     "Book/Luke2/Luke209.html", "mainFrame"));
Luke2.addItem(new TreeMenuItem("Betrayal and Arrest",                "Book/Luke2/Luke210.html", "mainFrame"));
Luke2.addItem(new TreeMenuItem("Jesus’ Trials",                      "Book/Luke2/Luke211.html", "mainFrame"));
Luke2.addItem(new TreeMenuItem("The Crucifixion",                    "Book/Luke2/Luke212.html", "mainFrame"));
Luke2.addItem(new TreeMenuItem("He is Risen!",                       "Book/Luke2/Luke213.html", "mainFrame"));
Luke2.addItem(new TreeMenuItem("Jesus Appears to His Disciples",     "Book/Luke2/Luke214.html", "mainFrame"));
Luke2.addItem(new TreeMenuItem("Period of Waiting",                  "Book/Luke2/Acts15.html",  "mainFrame"));
Luke2.addItem(new TreeMenuItem("Shavuot / Pentecost",                "Book/Luke2/Acts16.html",  "mainFrame"));
Luke2.addItem(new TreeMenuItem("Peter’s First Sermon",               "Book/Luke2/Acts17.html",  "mainFrame"));
Luke2.addItem(new TreeMenuItem("Jesus’ Ministry Continues",          "Book/Luke2/Acts18.html",  "mainFrame"));
Luke2.addItem(new TreeMenuItem("Peter and John Arrested",            "Book/Luke2/Acts19.html",  "mainFrame"));
Luke2.addItem(new TreeMenuItem("The Community of Believers",         "Book/Luke2/Acts20.html",  "mainFrame"));
Luke2.addItem(new TreeMenuItem("A Second Arrest",                    "Book/Luke2/Acts21.html",  "mainFrame"));
Luke2.addItem(new TreeMenuItem("Trouble for the Church",             "Book/Luke2/Acts22.html",  "mainFrame"));
NT.items[2].makeSubmenu(Luke2);

// THE PERSECUTED CHURCH

var Acts = null;Acts = new TreeMenu();
Acts.addItem(new TreeMenuItem("A Man Named Philip",                  "Book/Acts/Acts201.html", "mainFrame"));
Acts.addItem(new TreeMenuItem("Saul's Encounter",                    "Book/Acts/Acts202.html", "mainFrame"));
Acts.addItem(new TreeMenuItem("Peter's Missionary Journey",          "Book/Acts/Acts203.html", "mainFrame"));
Acts.addItem(new TreeMenuItem("Peter Explains/James Encourages",     "Book/Acts/Acts204.html", "mainFrame"));
Acts.addItem(new TreeMenuItem("The Life of the Believer",            "Book/Acts/Acts205.html", "mainFrame"));
Acts.addItem(new TreeMenuItem("The Believer’s Tongue",               "Book/Acts/Acts206.html", "mainFrame"));
Acts.addItem(new TreeMenuItem("Warnings & Call to Prayer",           "Book/Acts/Acts207.html", "mainFrame"));
Acts.addItem(new TreeMenuItem("The Church moves North",              "Book/Acts/Acts208.html", "mainFrame"));
Acts.addItem(new TreeMenuItem("The Gospel Spreads",                  "Book/Acts/Acts209.html", "mainFrame"));
Acts.addItem(new TreeMenuItem("Barnabas & Saul in Pisidian Antioch", "Book/Acts/Acts210.html", "mainFrame"));
Acts.addItem(new TreeMenuItem("Iconium, Lystra & Derbe",             "Book/Acts/Acts211.html", "mainFrame"));
Acts.addItem(new TreeMenuItem("Letter to the Galatians",             "Book/Acts/Galatians212.html", "mainFrame"));
Acts.addItem(new TreeMenuItem("Paul and the Apostles",               "Book/Acts/Galatians213.html", "mainFrame"));
Acts.addItem(new TreeMenuItem("Faith or the Law",                    "Book/Acts/Galatians214.html", "mainFrame"));
Acts.addItem(new TreeMenuItem("Sons and Heirs",                      "Book/Acts/Galatians215.html", "mainFrame"));
Acts.addItem(new TreeMenuItem("Two Covenants",                       "Book/Acts/Galatians216.html", "mainFrame"));
Acts.addItem(new TreeMenuItem("Freedom in Christ",                   "Book/Acts/Galatians217.html", "mainFrame"));
Acts.addItem(new TreeMenuItem("Defining Freedom in Christ",          "Book/Acts/Galatians218.html", "mainFrame"));
Acts.addItem(new TreeMenuItem("Final Thoughts",                      "Book/Acts/Galatians219.html", "mainFrame"));
Acts.addItem(new TreeMenuItem("The Jerusalem Council",               "Book/Acts/Acts220.html",      "mainFrame"));
NT.items[3].makeSubmenu(Acts);

// PAUL'S MISSIONARY JOURNEYS

var NT4 = null;NT4 = new TreeMenu();
NT4.addItem(new TreeMenuItem("Paul's Second Journey Begins",  "Book/NT4/nt401.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Philippi",                      "Book/NT4/nt402.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Thessalonica and Berea",        "Book/NT4/nt403.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Athens",                        "Book/NT4/nt404.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Letter to the Thessalonians",   "Book/NT4/nt405.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Paul Remembers Thessalonica",   "Book/NT4/nt406.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Living to Please God",          "Book/NT4/nt407.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Christ's Return",               "Book/NT4/nt408.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("In Conclusion",                 "Book/NT4/nt409.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("The Day of the Lord",           "Book/NT4/nt410.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Stand Firm! Pray!",             "Book/NT4/nt411.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Paul's Journey Continues",      "Book/NT4/nt412.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Ephesus",                       "Book/NT4/nt413.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Trouble in Ephesus",            "Book/NT4/nt414.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Wisdom or Foolishness",         "Book/NT4/nt415.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("True Wisdom",                   "Book/NT4/nt416.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("The Servant’s Role",            "Book/NT4/nt417.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Problems in the Church",        "Book/NT4/nt418.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Marriage and Divorce",          "Book/NT4/nt419.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Freedom based in Love",         "Book/NT4/nt420.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Paul as an Example",            "Book/NT4/nt421.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Proper Worship",                "Book/NT4/nt422.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Spiritual Gifts",               "Book/NT4/nt423.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Love, the Most Excellent Way",  "Book/NT4/nt424.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Prophecy and Tongues",          "Book/NT4/nt425.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Abuse of Tongues",              "Book/NT4/nt426.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Resurrection of the Christ",    "Book/NT4/nt427.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Resurrection of the Body",      "Book/NT4/nt428.html", "mainFrame"));
NT4.addItem(new TreeMenuItem("Final Instructions & Farewell", "Book/NT4/nt429.html", "mainFrame"));
NT.items[4].makeSubmenu(NT4);

// PAUL'S MISSIONARY JOURNEYS

var NT5 = null;NT5 = new TreeMenu();
NT5.addItem(new TreeMenuItem("Paul leaves Ephesus",           "Book/NT5/nt501.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("The Troublemaker",              "Book/NT5/nt502.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("Living Letters",                "Book/NT5/nt503.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("Eternal Perspective",           "Book/NT5/nt504.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("Reconciliation",                "Book/NT5/nt505.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("Paul's Heart Revealed",         "Book/NT5/nt506.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("Collection for Jerusalem",      "Book/NT5/nt507.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("Paul Defends His Ministry",     "Book/NT5/nt508.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("Paul's Life of Ministry",       "Book/NT5/nt509.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("Paul’s Concerns",               "Book/NT5/nt510.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("Paul's Letter to the Romans",   "Book/NT5/nt511.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("God’s Judgment",                "Book/NT5/nt512.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("Justification & Righteousness", "Book/NT5/nt513.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("Father Abraham",                "Book/NT5/nt514.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("How Much More!",                "Book/NT5/nt515.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("Freedom in Christ",             "Book/NT5/nt516.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("Struggles of Life",             "Book/NT5/nt517.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("Life in Christ",                "Book/NT5/nt518.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("Victory in Christ",             "Book/NT5/nt519.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("God's Plan of Salvation 1",     "Book/NT5/nt520.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("God's Plan of Salvation 2",     "Book/NT5/nt521.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("God's Plan of Salvation 3",     "Book/NT5/nt522.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("Right Living, Part 1",          "Book/NT5/nt523.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("Right Living, Part 2",          "Book/NT5/nt524.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("Final Instruction",             "Book/NT5/nt525.html", "mainFrame"));
NT5.addItem(new TreeMenuItem("Personal Greeting",             "Book/NT5/nt526.html", "mainFrame"));
NT.items[5].makeSubmenu(NT5);

// PAUL'S JOURNEY TO ROME

var NT6 = null;
NT6 = new TreeMenu();
NT6.addItem(new TreeMenuItem("The Journey Begins",             "Book/NT6/nt601.html", "mainFrame"));
NT6.addItem(new TreeMenuItem("Good-bye to the Ephesians",      "Book/NT6/nt602.html", "mainFrame"));
NT6.addItem(new TreeMenuItem("On to Jerusalem",                "Book/NT6/nt603.html", "mainFrame"));
NT6.addItem(new TreeMenuItem("Arrival and Arrest",             "Book/NT6/nt604.html", "mainFrame"));
NT6.addItem(new TreeMenuItem("Paul and the Jews",              "Book/NT6/nt605.html", "mainFrame"));
NT6.addItem(new TreeMenuItem("Paul before the Sanhedrin",      "Book/NT6/nt606.html", "mainFrame"));
NT6.addItem(new TreeMenuItem("Paul moved to Caesarea",         "Book/NT6/nt607.html", "mainFrame"));
NT6.addItem(new TreeMenuItem("Paul before Felix",              "Book/NT6/nt608.html", "mainFrame"));
NT6.addItem(new TreeMenuItem("Paul before Festus",             "Book/NT6/nt609.html", "mainFrame"));
NT6.addItem(new TreeMenuItem("Paul before Agrippa",            "Book/NT6/nt610.html", "mainFrame"));
NT6.addItem(new TreeMenuItem("Sailing toward Rome",            "Book/NT6/nt611.html", "mainFrame"));
NT6.addItem(new TreeMenuItem("The Shipwreck",                  "Book/NT6/nt612.html", "mainFrame"));
NT6.addItem(new TreeMenuItem("Safely to Rome",                 "Book/NT6/nt613.html", "mainFrame"));
NT6.addItem(new TreeMenuItem("Welcome Back Onesimus",          "Book/NT6/nt614.html", "mainFrame"));
NT6.addItem(new TreeMenuItem("Paul's Letter to Colosse",       "Book/NT6/nt615.html", "mainFrame"));
NT6.addItem(new TreeMenuItem("The Person of Christ",           "Book/NT6/nt616.html", "mainFrame"));
NT6.addItem(new TreeMenuItem("In Christ",                      "Book/NT6/nt617.html", "mainFrame"));
NT6.addItem(new TreeMenuItem("Holy Living for Those in Christ","Book/NT6/nt618.html", "mainFrame"));
NT6.addItem(new TreeMenuItem("Further Instructions",           "Book/NT6/nt619.html", "mainFrame"));
NT6.addItem(new TreeMenuItem("Final Greetings",                "Book/NT6/nt620.html", "mainFrame"));
NT.items[6].makeSubmenu(NT6);

// PAUL'S LETTERS FROM ROME

var NT7 = null;
NT7 = new TreeMenu();
NT7.addItem(new TreeMenuItem("Blessings In Christ",              "Book/NT7/nt701.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Thanksgiving, Prayer & Reflection","Book/NT7/nt702.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("United in Christ",                 "Book/NT7/nt703.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("The Mystery & Love of Christ",     "Book/NT7/nt704.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("One in Christ",                    "Book/NT7/nt705.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Godly Living",                     "Book/NT7/nt706.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Darkness vs. Light",               "Book/NT7/nt707.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Household Relationships",          "Book/NT7/nt708.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Final Words",                      "Book/NT7/nt709.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Letter to the Philippians",        "Book/NT7/nt710.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Joy in Salvation",                 "Book/NT7/nt711.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Paul's Plans",                     "Book/NT7/nt712.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Pressing On",                      "Book/NT7/nt713.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Conclusion",                       "Book/NT7/nt714.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Timothy, My Son",                  "Book/NT7/nt715.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Instructions for Worship 1",       "Book/NT7/nt716.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Instructions for Worship 2",       "Book/NT7/nt717.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Instructions to Timothy",          "Book/NT7/nt718.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Responsibilities & Discipline",    "Book/NT7/nt719.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Final Instructions",               "Book/NT7/nt720.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Titus on Crete",                   "Book/NT7/nt721.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Right Behavior in the Church",     "Book/NT7/nt722.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Right Behavior in the World",      "Book/NT7/nt723.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Words of Encouragement",           "Book/NT7/nt724.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Effective Ministry",               "Book/NT7/nt725.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Opposition",                       "Book/NT7/nt726.html", "mainFrame"));
NT7.addItem(new TreeMenuItem("Personal Remarks",                 "Book/NT7/nt727.html", "mainFrame"));
NT.items[7].makeSubmenu(NT7);

// REVELATION

var rev = null;
rev = new TreeMenu();
rev.addItem(new TreeMenuItem("Historical Background of the Times",       "audio/audio.php?ID=Rev&amp;Lesson=00", "mainFrame"));
rev.addItem(new TreeMenuItem("Introduction to Revelation",               "Book/Rev/rev01.html", "mainFrame"));
rev.addItem(new TreeMenuItem("Jesus Christ among the churches",          "Book/Rev/rev02.html", "mainFrame"));
rev.addItem(new TreeMenuItem("To churches in Ephesus, Smyrna & Pergamum","Book/Rev/rev03.html", "mainFrame"));
rev.addItem(new TreeMenuItem("To churches in Thyatira & Sardis",         "Book/Rev/rev04.html", "mainFrame"));
rev.addItem(new TreeMenuItem("To churches in Philadelphia & Laodicea",   "Book/Rev/rev05.html", "mainFrame"));
rev.addItem(new TreeMenuItem("God's throne room",                        "Book/Rev/rev06.html", "mainFrame"));
rev.addItem(new TreeMenuItem("Heavenly worship",                         "Book/Rev/rev07.html", "mainFrame"));
rev.addItem(new TreeMenuItem("The seals",                                "Book/Rev/rev08.html", "mainFrame"));
rev.addItem(new TreeMenuItem("Protection of the saints",                 "Book/Rev/rev09.html", "mainFrame"));
rev.addItem(new TreeMenuItem("The seventh seal & trumpet judgments",     "Book/Rev/rev10.html", "mainFrame"));
rev.addItem(new TreeMenuItem("The fifth & sixth trumpet judgments",      "Book/Rev/rev11.html", "mainFrame"));
rev.addItem(new TreeMenuItem("The angel and the little scroll",          "Book/Rev/rev12.html", "mainFrame"));
rev.addItem(new TreeMenuItem("The two witnesses",                        "Book/Rev/rev13.html", "mainFrame"));
rev.addItem(new TreeMenuItem("The Woman and the dragon",                 "Book/Rev/rev14.html", "mainFrame"));
rev.addItem(new TreeMenuItem("The great cosmic war",                     "Book/Rev/rev15.html", "mainFrame"));
rev.addItem(new TreeMenuItem("The two beasts",                           "Book/Rev/rev16.html", "mainFrame"));
rev.addItem(new TreeMenuItem("The lamb and the harvest",                 "Book/Rev/rev17.html", "mainFrame"));
rev.addItem(new TreeMenuItem("God's wrath",                              "Book/Rev/rev18.html", "mainFrame"));
rev.addItem(new TreeMenuItem("The seven bowls",                          "Book/Rev/rev19.html", "mainFrame"));
rev.addItem(new TreeMenuItem("The woman and the beast",                  "Book/Rev/rev20.html", "mainFrame"));
rev.addItem(new TreeMenuItem("The fall of Babylon",                      "Book/Rev/rev21.html", "mainFrame"));
rev.addItem(new TreeMenuItem("Victory",                                  "Book/Rev/revnn.html", "mainFrame"));
/******************************************************************************
rev.addItem(new TreeMenuItem("The millennium reign",                     "Book/Rev/rev23.html", "mainFrame"));
rev.addItem(new TreeMenuItem("The holy city",                            "Book/Rev/rev24.html", "mainFrame"));
rev.addItem(new TreeMenuItem("I am coming soon!",                        "Book/Rev/rev25.html", "mainFrame"));
******************************************************************************/
NT.items[8].makeSubmenu(rev);


