titlelist = Array(0, 1, 'The Real Christ',
	-1, 2, 'Foreword',
	1, 3, 'The Real Christ: Foreword',
	-1, 2, 'Part 1: Some Bible Basics',
	2, 3, '1-1 The Personality of God',
	3, 3, '1-2 Implications Of The Unity Of God',
	4, 3, '1-3 God Manifestation',
	5, 3, '1-4 God’s Spirit',
	6, 3, '1-5 Is the Holy Spirit a Person?',
	7, 3, '1-6 The Principle of Personification',
	8, 3, '1-7 The Promise In Eden',
	9, 3, '1-8 The Promise to Abraham',
	10, 3, '1-9 The Promise To David',
	11, 3, '1-10 Old Testament Prophecies of Jesus',
	12, 3, '1-11 The Virgin Birth',
	13, 3, '1-12 Christ’s Place In God’s Plan',
	14, 3, '1-13 Did Jesus Create The Earth?',
	15, 3, '1-14 Jesus Didn\'t Pre-Exist: And So What?',
	16, 3, '1-15 Differences Between God And Jesus',
	17, 3, '1-16 The Nature of Jesus',
	18, 3, '1-17 The Humanity Of Jesus',
	19, 3, '1-18 The Victory Of Jesus',
	20, 3, '1-19 The Blood Of Jesus',
	21, 3, '1-20 Jesus And The Law Of Moses',
	22, 3, '1-21 Jesus As Our Representative',
	23, 3, '1-22 The Meaning Of Christ\'s Resurrection For Us',
	24, 3, '1-23 Christ Died For Me: So What Should I Do?',
	25, 3, '1-24 The Inspiration Of The Cross In Daily Life',
	-1, 2, 'Part 2: The Real Christ',
	26, 3, '2-1 Images Of Jesus',
	27, 3, '2-2 Abba, Father',
	28, 3, '2-3 The Self-Proclamation Of Jesus',
	29, 3, '2-4 Jesus A Palestinian Jew',
	30, 3, '2-5 Jesus And People',
	31, 3, '2-6 The Words Of Jesus',
	32, 3, '2-7 The Poverty Of Jesus',
	33, 3, '2-8 Finding Meaning In Everyday Experience',
	34, 3, '2-9 Jesus The Intellectual',
	35, 3, '2-10 The Naturalness Of Jesus',
	36, 3, '2-11 Perceiving Others’ Needs',
	37, 3, '2-12 Jesus The Radical',
	38, 3, '2-13 Radical Demands Of Jesus',
	39, 3, '2-14 The Radical Language Of Jesus',
	40, 3, '2-15 The Radical Authority Of Jesus',
	41, 3, '2-16 The Radical Acceptance Of Jesus',
	42, 3, '2-17 Jesus: A Man Misunderstood',
	43, 3, '2-18 The Real Cross: Today Is Friday',
	44, 3, '2-19 The Same Yesterday And Today',
	45, 3, '2-20 The 21st Century Jesus',
	46, 3, '2-21 The Importance Of The Humanity Of Christ',
	47, 3, '2-22 The Divine Side Of Jesus',
	48, 3, '2-23 Christ-centredness',
	49, 3, '2-24 The Spirit Of Jesus',
	-1, 2, 'Part 3: How The Real Christ Was Lost',
	50, 3, '3-1 Why The Trinity Was Accepted',
	51, 3, '3-2 Genuine Intellectual Failure?',
	52, 3, '3-3 The Psychological Attraction Of A Non-Human Jesus',
	53, 3, '3-4 Jewish Influence On The Trinity',
	54, 3, '3-5 Dirty Politics And The Doctrine Of The Trinity',
	55, 3, '3-6 The Trinity: A Desire For Acceptance',
	56, 3, '3-7 How The Real Christ Was Lost',
	-1, 2, 'Part 4: Some Wrested Scriptures',
	57, 3, 'Some Wrested Scriptures:  Introduction',
	58, 3, '2-1 “In the beginning was the word”',
	59, 3, '2-2 "The word was with God"',
	60, 3, '2-3 " The word was made flesh"',
	61, 3, '2-4 “The word was God”',
	62, 3, '2-5 “All things were made by him”',
	63, 3, '2-6 How Was The Logos / Word Made Flesh?',
	64, 3, '3 Jesus\' Raising Up Of Himself (Jn. 2:19-21)',
	65, 3, '4 “God is a Spirit” (Jn. 4:24)',
	66, 3, '5 “I came down from Heaven” (Jn. 6:33,38)',
	67, 3, '6 “Before Abraham was, I am”(Jn. 8:58)',
	68, 3, '7 "The glory I had with you before the world was" (Jn. 17:5)',
	69, 3, '8 The Rock That Followed Them (1 Cor. 10)',
	70, 3, '9 “Being in the Form of God” (Phil. 2)',
	71, 3, '10 Colossians 1:15-18: By Jesus Were All Things Created',
	72, 3, '11 Hebrews 1:2: "The Son... by whom [God] made the worlds"',
	73, 3, '12 Who Was Melchizedek?',
	74, 3, '10a Colossians 2:9 2:9 “Christ... In whom dwells all the fullness of the Godhead bodily”',
	-1, 2, 'Appendix: Jesus For Unbelievers',
	75, 3, 'Jesus For Unbelievers');

function _onchange(selobj) {
	var m = selobj.selectedIndex;
	var v = selobj.options[m].value;
	if (v == '0') {
		document.location.href="/doc/real_christ-en";
	} else if (v != '-1') {
		document.location.href="/doc/real_christ-en/" + v;
	}
}

function AttachList(selobj) {
  selobj.options.length = 0;
  var cv = MM_findObj('current');
  if (cv) cv = cv.value;
  var m, j;
  var k=0;
  for(var i=0;i<titlelist.length;i+=3) {
  	m = titlelist[i+2];
  	for(j=1;j<titlelist[i+1];j++) {
  		m = '  ' + m;
  	}
  	selobj.options[k] = new Option(m, titlelist[i]);
  	selobj.options[k].className = 'sel' + titlelist[i+1];
  	if (cv == titlelist[i]) selobj.selectedIndex = k;
  	k++;
  }
}

function attachnavigation() {
  var sel = MM_findObj('topnav');
  if (sel) AttachList(sel);
  sel = MM_findObj('lownav');
  if (sel) AttachList(sel);
}

addLoadEvent(attachnavigation);