titlelist = Array(0, 1, 'October - December 2005',
	2, 3, 'Editorial: Grace upon Grace',
	-1, 2, 'News',
	3, 3, 'news from botswana',
	4, 3, 'news from burundi',
	5, 3, 'news from cameroon',
	6, 3, 'news from congo',
	7, 3, 'news from ghana',
	8, 3, 'news from kenya',
	9, 3, 'news from malawi',
	10, 3, 'news from mauritius',
	11, 3, 'news from nigeria',
	12, 3, 'news from south africa',
	13, 3, 'news from swaziland',
	14, 3, 'news from tanzania',
	15, 3, 'news from uganda',
	16, 3, 'news from zaire',
	17, 3, 'news from zambia',
	18, 3, 'news from zimbabwe',
	19, 3, 'news from belarus',
	20, 3, 'news from bosnia',
	21, 3, 'news from georgia',
	22, 3, 'news from iran',
	23, 3, 'news from iraq',
	24, 3, 'news from israel',
	25, 3, 'news from italy',
	26, 3, 'news from jordan',
	27, 3, 'news from kazakhstan',
	28, 3, 'news from latvia',
	29, 3, 'news from lithuania',
	30, 3, 'news from pakistan',
	31, 3, 'news from russia',
	32, 3, 'news from serbia',
	33, 3, 'news from spain',
	34, 3, 'news from turkey',
	35, 3, 'news from canada',
	36, 3, 'news from jamaica',
	37, 3, 'news from st lucia',
	38, 3, 'news from philippines',
	-1, 2, 'Articles',
	39, 3, 'Arthritis Relief',
	40, 3, 'Disappointment and Suffering',
	41, 3, 'Brothers to Stay Together in Unity',
	42, 3, 'Can We Be His Disciples?',
	43, 3, 'Jesus Helps the Needy',
	44, 3, 'Bush Camp, Fringilla, Zambia',
	45, 3, 'Exhortation:  Be of Good Cheer',
	46, 3, 'The Day and the Hour Not Known',
	47, 3, 'Fufilling Our Vows',
	48, 3, 'Study Week in Solo Indonesia.',
	49, 3, 'Paul Learned the Secret of Contentment',
	50, 3, 'Being a Refugee',
	51, 3, 'Let your light shine',
	52, 3, 'Your Life is a Posted Letter',
	53, 3, 'Sarajevo (Bosnia) Chicken Project',
	54, 3, 'Key to Answered Prayer',
	55, 3, 'Why Study the Book of Revelation',
	56, 3, 'The Unity of the Church',
	57, 3, '"I am the resurrection and the life"',
	58, 3, 'World Population',
	59, 3, 'Education is Important for Children',
	60, 3, 'Letter from Kenya Coastal Area',
	61, 3, 'For Us Today',
	62, 3, 'The Letter to the Hebrews',
	63, 3, 'Pay More Careful Attention',
	64, 3, 'The Wages of Sin',
	65, 3, 'An Appeal to all Christadelphians',
	66, 3, 'Helps For The Daily Readings',
	67, 3, 'The Blind Man of Jericho  (Mark 10:46-52)',
	68, 3, 'Why View Marriage as Sacred',
	69, 3, 'Wool Needed',
	70, 3, 'Bible Translations',
	71, 3, 'Changing the Clock?',
	72, 3, 'Point to ponder',
	73, 3, 'Scenes from Uganda',
	74, 3, 'Fear',
	75, 3, 'Baptism',
	76, 3, 'Droughts',
	77, 3, 'Signs of the Times.',
	78, 3, '2 Chronicles 14 v11',
	79, 3, '“Come now, and  Let us reason together ….”',
	80, 3, 'Relationships with My Friends and Brethren',
	81, 3, 'Memories from Kamukuywa Bible School');

function _onchange(selobj) {
	var m = selobj.selectedIndex;
	var v = selobj.options[m].value;
	if (v == '0') {
		document.location.href="/doc/gn200510-en";
	} else if (v != '-1') {
		document.location.href="/doc/gn200510-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);