/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Lee Underwood :: http://javascript.internet.com/ */
function mainmenu01() {
  var links = new Array();
    links[0]="Home";
    links[1]="About";
    links[2]="Contact";
    links[3]="Announcements";
    links[4]="Internet Radio";
    links[5]="Forum";
    links[6]="Projects";
    links[7]="Blog";

  var linkURL = new Array();
    linkURL[0]="oldindex.html";
    linkURL[1]="index_files/About.htm";
    linkURL[2]="index_files/Contact.htm";
    linkURL[3]="index_files/Announcements.htm";
    linkURL[4]="index_files/Radio.htm";
    linkURL[5]="http://forum.christogenea.org/";
    linkURL[6]="index_files/Projects.htm";
    linkURL[7]="http://theblog.christogenea.org/index.php";

  for (i=0; i<links.length; i++) {
    document.write("<li>"+links[i].link(linkURL[i])+"</li>");
  }
}


function mainmenu02() {
  var links = new Array();
    links[0]="Home";
    links[1]="About";
    links[2]="Contact";
    links[3]="Announcements";
    links[4]="Internet Radio";
    links[5]="Forum";
    links[6]="Projects";
    links[7]="Blog";

  var linkURL = new Array();
    linkURL[0]="../oldindex.html";
    linkURL[1]="../index_files/About.htm";
    linkURL[2]="../index_files/Contact.htm";
    linkURL[3]="../index_files/Announcements.htm";
    linkURL[4]="../index_files/Radio.htm";
    linkURL[5]="http://forum.christogenea.org/";
    linkURL[6]="../index_files/Projects.htm";
    linkURL[7]="http://theblog.christogenea.org/index.php";

  for (i=0; i<links.length; i++) {
    document.write("<li>"+links[i].link(linkURL[i])+"</li>");
  }
}

/* ------------------------------------- */

function essaymenu01() {
  var links = new Array();
    links[0]="Overview Pages";
    links[1]="Historical Topics";
    links[2]="Race in the Bible";
    links[3]="Topics in Genesis";
    links[4]="Against Heresies";
    links[5]="Other Topics";
    links[6]="Letters etc.";

  var linkURL = new Array();
    linkURL[0]="Overview/Overview.htm";
    linkURL[1]="index_files/HistoricalEssays.htm";
    linkURL[2]="index_files/RaceEssays.htm";
    linkURL[3]="index_files/GenesisEssays.htm";
    linkURL[4]="index_files/HeresyEssays.htm";
    linkURL[5]="index_files/OtherEssays.htm";
    linkURL[6]="index_files/Letters.htm";

	document.write("<h2>Papers:</h2>");
	document.write("<ul>");
  for (i=0; i<links.length; i++) {
    document.write("<li>"+links[i].link(linkURL[i])+"</li>");
  }
 	document.write("</ul>");
}

function essaymenu02() {
  var links = new Array();
    links[0]="Overview Pages";
    links[1]="Historical Topics";
    links[2]="Race in the Bible";
    links[3]="Topics in Genesis";
    links[4]="Against Heresies";
    links[5]="Other Topics";
    links[6]="Letters etc.";

  var linkURL = new Array();
    linkURL[0]="../Overview/Overview.htm";
    linkURL[1]="../index_files/HistoricalEssays.htm";
    linkURL[2]="../index_files/RaceEssays.htm";
    linkURL[3]="../index_files/GenesisEssays.htm";
    linkURL[4]="../index_files/HeresyEssays.htm";
    linkURL[5]="../index_files/OtherEssays.htm";
    linkURL[6]="../index_files/Letters.htm";

	document.write("<h2>Papers:</h2>");
	document.write("<ul>");
  for (i=0; i<links.length; i++) {
    document.write("<li>"+links[i].link(linkURL[i])+"</li>");
  }
 	document.write("</ul>");
}

/* ------------------------------------- */

function transmenu01() {
  var links = new Array();
    links[0]="Introduction";
    links[1]="Copyright Notice";
    links[2]="Revision History";
    links[3]="Index";


  var linkURL = new Array();
    linkURL[0]="Translations_files/TransIntro.htm";
    linkURL[1]="Translations_files/TransCopyright.htm";
    linkURL[2]="Translations_files/TransRevisions.htm";
    linkURL[3]="Translations_files/TransIndex.htm";

	document.write("<h2>N.T. Translations:</h2>");
	document.write("<ul>");
  for (i=0; i<links.length; i++) {
    document.write("<li>"+links[i].link(linkURL[i])+"</li>");
  }
 	document.write("</ul>");
}

function transmenu02() {
  var links = new Array();
    links[0]="Introduction";
    links[1]="Copyright Notice";
    links[2]="Revision History";
    links[3]="Index";


  var linkURL = new Array();
    linkURL[0]="../Translations_files/TransIntro.htm";
    linkURL[1]="../Translations_files/TransCopyright.htm";
    linkURL[2]="../Translations_files/TransRevisions.htm";
    linkURL[3]="../Translations_files/TransIndex.htm";

	document.write("<h2>N.T. Translations:</h2>");
	document.write("<ul>");
  for (i=0; i<links.length; i++) {
    document.write("<li>"+links[i].link(linkURL[i])+"</li>");
  }
 	document.write("</ul>");
}

/* ------------------------------------- */

function langmenu01() {
  var links = new Array();
    links[0]="Introduction";
    links[1]="About";
    links[2]="Part One";
    links[3]="Part Two";
    links[4]="Part Three";
    links[5]="Part Four";
    links[6]="Part Five";

  var linkURL = new Array();
    linkURL[0]="index_files/EngHebrIntro.htm";
    linkURL[1]="index_files/EngHebrAbout.htm";
    linkURL[2]="index_files/EngHebr01.htm";
    linkURL[3]="index_files/EngHebr02.htm";
    linkURL[4]="index_files/EngHebr03.htm";
    linkURL[5]="index_files/EngHebr04.htm";
    linkURL[6]="index_files/EngHebr05.htm";

	document.write("<h2>Language Studies:</h2>");
	document.write("<p>English is From Hebrew:</p>");
	document.write("<ul>");
  for (i=0; i<links.length; i++) {
    document.write("<li>"+links[i].link(linkURL[i])+"</li>");
  }
 	document.write("</ul>");
}

function langmenu02() {
  var links = new Array();
    links[0]="Introduction";
    links[1]="About";
    links[2]="Part One";
    links[3]="Part Two";
    links[4]="Part Three";
    links[5]="Part Four";
    links[6]="Part Five";

  var linkURL = new Array();
    linkURL[0]="../index_files/EngHebrIntro.htm";
    linkURL[1]="../index_files/EngHebrAbout.htm";
    linkURL[2]="../index_files/EngHebr01.htm";
    linkURL[3]="../index_files/EngHebr02.htm";
    linkURL[4]="../index_files/EngHebr03.htm";
    linkURL[5]="../index_files/EngHebr04.htm";
    linkURL[6]="../index_files/EngHebr05.htm";

	document.write("<h2>Language Studies:</h2>");
	document.write("<p>English is From Hebrew:</p>");
	document.write("<ul>");
  for (i=0; i<links.length; i++) {
    document.write("<li>"+links[i].link(linkURL[i])+"</li>");
  }
 	document.write("</ul>");
}

/* ------------------------------------- */

function thinkmenu01() {
  var links = new Array();
    links[0]="Signs of the times: things to be aware of and consider seriously";
    links[1]="Gallery - The Christogenea Hall of Shame and other items of interest";

   var linkURL = new Array();
    linkURL[0]="index_files/Consider.htm";
    linkURL[1]="index_files/Gallery.htm";

	document.write("<h2>Think about this:</h2>");
	document.write("<ul>");
  for (i=0; i<links.length; i++) {
    document.write("<li>"+links[i].link(linkURL[i])+"</li>");
  }
 	document.write("</ul>");
}

function thinkmenu02() {
  var links = new Array();
    links[0]="Signs of the times: things to be aware of and consider seriously";
    links[1]="Gallery - The Christogenea Hall of Shame and other items of interest";

   var linkURL = new Array();
    linkURL[0]="../index_files/Consider.htm";
    linkURL[1]="../index_files/Gallery.htm";

	document.write("<h2>Think about this:</h2>");
	document.write("<ul>");
  for (i=0; i<links.length; i++) {
    document.write("<li>"+links[i].link(linkURL[i])+"</li>");
  }
 	document.write("</ul>");
}

/* ------------------------------------- */

function oviewmenu01() {
  var links = new Array();
    links[0]="Introduction";
    links[1]="Creationism and Evolution";
    links[2]="Genesis  1";
    links[3]="Genesis  2";
    links[4]="Genesis  3";
    links[5]="Genesis  4";
    links[6]="Genesis  5";
    links[7]="Genesis  6";
    links[8]="The Great Flood";
    links[9]="Genesis 10 &amp; 11";
	links[10]="Ancient Egypt";
    links[11]="Heirs of the Covenant";

  var linkURL = new Array();
    linkURL[0]="Overview/Overview.htm";
    linkURL[1]="Overview/Creat_and_evol.htm";
    linkURL[2]="Overview/Gen1.htm";
    linkURL[3]="Overview/Gen2.htm";
    linkURL[4]="Overview/Gen3.htm";
    linkURL[5]="Overview/Gen4.htm";
    linkURL[6]="Overview/Gen5.htm";
	linkURL[7]="Overview/Gen6.htm";
    linkURL[8]="Overview/GreatFlood.htm";
    linkURL[9]="Overview/Gen10-11.htm";
    linkURL[10]="Overview/Egypt.htm";
	linkURL[11]="Overview/heirs.htm";

	document.write("<h2>Christogenea Overview</h2>");
	document.write("<h2>&nbsp;</h2>"); 
	document.write("<h2>Index of Articles:</h2>");
	document.write("<p>&nbsp;</p>");
	document.write("<ul>");
  for (i=0; i<links.length; i++) {
    document.write("<li>"+links[i].link(linkURL[i])+"</li>");
  }
 	document.write("</ul>");
}

function oviewmenu02() {
  var links = new Array();
    links[0]="Introduction";
    links[1]="Creationism and Evolution";
    links[2]="Genesis  1";
    links[3]="Genesis  2";
    links[4]="Genesis  3";
    links[5]="Genesis  4";
    links[6]="Genesis  5";
    links[7]="Genesis  6";
    links[8]="The Great Flood";
    links[9]="Genesis 10 &amp; 11";
	links[10]="Ancient Egypt";
    links[11]="Heirs of the Covenant";

  var linkURL = new Array();
    linkURL[0]="../Overview/Overview.htm";
    linkURL[1]="../Overview/Creat_and_evol.htm";
    linkURL[2]="../Overview/Gen1.htm";
    linkURL[3]="../Overview/Gen2.htm";
    linkURL[4]="../Overview/Gen3.htm";
    linkURL[5]="../Overview/Gen4.htm";
    linkURL[6]="../Overview/Gen5.htm";
	linkURL[7]="../Overview/Gen6.htm";
    linkURL[8]="../Overview/GreatFlood.htm";
    linkURL[9]="../Overview/Gen10-11.htm";
    linkURL[10]="../Overview/Egypt.htm";
	linkURL[11]="../Overview/heirs.htm";

	document.write("<h2>Christogenea Overview</h2>");
	document.write("<h2>&nbsp;</h2>"); 
	document.write("<h2>Index of Articles:</h2>");
	document.write("<p>&nbsp;</p>");
	document.write("<ul>");
  for (i=0; i<links.length; i++) {
    document.write("<li>"+links[i].link(linkURL[i])+"</li>");
  }
 	document.write("</ul>");
}

/* ------------------------------------- */

function othermenu() {
  var links = new Array();
    links[0]="Visit The Blog at Christogenea.org";
    links[1]="Or write your own articles for the Christogenea Reader's Blog";
	links[2]="Links to other sites espousing similar views (Christogenea does NOT agree with everything found at all of these sites, but provides access to them here as a public service";

   var linkURL = new Array();
    linkURL[0]="http://theblog.christogenea.org/";
    linkURL[1]="http://readersblog.christogenea.org/";
	linkURL[2]="http://christogenea.org/index_files/links.html";

	document.write("<h2>Blogs:</h2>");
	
	document.write("<ul>");
  for (i=0; i<links.length; i++) {
    document.write("<li>"+links[i].link(linkURL[i])+"</li><br />");
  }
 	document.write("</ul>");
}

/* ------------------------------------- */