titlelist = Array(0, 1, 'November - December 2004',
	2, 3, 'EDITORIAL: More on the Road Ahead',
	-1, 2, 'News',
	3, 3, 'news from cameroon',
	4, 3, 'news from congo',
	5, 3, 'news from egypt',
	6, 3, 'news from ghana',
	7, 3, 'news from kenya',
	8, 3, 'news from malawi',
	9, 3, 'news from nigeria',
	10, 3, 'news from tanzania',
	11, 3, 'news from uganda',
	12, 3, 'news from zambia',
	13, 3, 'news from zimbabwe',
	14, 3, 'news from azerbaijan',
	15, 3, 'news from belarus',
	16, 3, 'news from bosnia',
	17, 3, 'news from georgia',
	18, 3, 'news from ireland',
	19, 3, 'news from israel',
	20, 3, 'news from italy',
	21, 3, 'news from kazakhstan',
	22, 3, 'news from kyrgyzstan',
	23, 3, 'news from latvia',
	24, 3, 'news from lithuania',
	25, 3, 'news from moldova',
	26, 3, 'news from norway',
	27, 3, 'news from russia',
	28, 3, 'news from serbia',
	29, 3, 'news from turkey',
	30, 3, 'news from turkmenistan',
	31, 3, 'news from ukraine',
	32, 3, 'news from uzbekistan',
	33, 3, 'news from brazil',
	-1, 2, 'Articles',
	34, 3, 'The Kingdom of God Here on Earth',
	35, 3, 'The Real Value of the Gospel',
	36, 3, 'God Heals Those Who Are Broken-hearted',
	37, 3, 'An introduction to God\'s Heavenly Law   (Part 3)',
	38, 3, 'Daniel\'s Training in Babylon',
	39, 3, 'Pogradec, Albania',
	40, 3, 'Review:     \'Where there is no Doctor\'',
	41, 3, 'Sponsors Wanted - \'Where there is no Doctor\' Booklet',
	42, 3, 'Counting the Cost',
	43, 3, 'False Teachers',
	44, 3, 'The Honour of the Call (Eph ch 1)',
	45, 3, 'Promise of Peace',
	46, 3, 'The Tongue',
	47, 3, 'Nigerian  Atrocities  2 Million  died         100,000 Military  Casualties    Christadelphians  lived  in  Caves',
	48, 3, 'Answers from \'Trinitarian Texts Examined\'',
	49, 3, 'Kenya  -   The need for Registration',
	51, 3, 'A Man of His Own Choice  - Genesis 13, 14, 17, 18 and 19.',
	50, 3, 'Notes on the Daily Readings - December 11-15',
	52, 3, 'A Way of Life',
	53, 3, 'Signs of the Times',
	54, 3, 'Israel',
	55, 3, 'The Just Shall Live by His Faith (Habakkuk 2:4)',
	56, 3, 'Fringilla (Zambia) Bush Camp 2004',
	57, 3, 'Fringilla Camp Mutual Improvement Class',
	58, 3, '"I stand at the Door and Knock"',
	59, 3, 'Question Box - What is the difference between soul and spirit?',
	60, 3, 'A Story About Forgiveness',
	61, 3, 'The Truth Spreads In Bosnia',
	62, 3, 'Preaching In American Prisons: Update',
	63, 3, 'Question Box - Why are we all sinners?');

function _onchange(selobj) {
	var m = selobj.selectedIndex;
	var v = selobj.options[m].value;
	if (v == '0') {
		document.location.href="/doc/gn200411-en";
	} else if (v != '-1') {
		document.location.href="/doc/gn200411-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);