titlelist = Array(0, 1, 'January - February 2006',
	2, 3, 'EDITORIAL: “Let the dead bury their dead”',
	-1, 2, 'News',
	3, 3, 'news from cameroon',
	4, 3, 'news from kenya',
	5, 3, 'news from malawi',
	6, 3, 'news from nigeria',
	7, 3, 'news from south africa',
	8, 3, 'news from tanzania',
	9, 3, 'news from uganda',
	10, 3, 'news from zambia',
	11, 3, 'news from zimbabwe',
	12, 3, 'news from azerbaijan',
	13, 3, 'news from belarus',
	14, 3, 'news from belgium',
	15, 3, 'news from bosnia',
	16, 3, 'news from croatia',
	17, 3, 'news from england',
	18, 3, 'news from georgia',
	19, 3, 'news from iran',
	20, 3, 'news from iraq',
	21, 3, 'news from israel',
	22, 3, 'news from italy',
	23, 3, 'news from jordan',
	24, 3, 'news from kazakhstan',
	25, 3, 'news from kyrgyzstan',
	26, 3, 'news from latvia',
	27, 3, 'news from lithuania',
	28, 3, 'news from macedonia',
	29, 3, 'news from moldova',
	30, 3, 'news from norway',
	31, 3, 'news from pakistan',
	32, 3, 'news from poland',
	33, 3, 'news from russia',
	34, 3, 'news from serbia',
	35, 3, 'news from spain',
	36, 3, 'news from sweden',
	37, 3, 'news from turkey',
	38, 3, 'news from turkmenistan',
	39, 3, 'news from ukraine',
	40, 3, 'news from uzbekistan',
	41, 3, 'news from colombia',
	42, 3, 'news from indonesia',
	43, 3, 'news from malaysia',
	44, 3, 'news from nepal',
	-1, 2, 'Articles',
	45, 3, 'Brothers and Sisters to Love One Another',
	46, 3, 'Why Did Elisha Ask for Two Parts of Elijah\u2019s Spirit?',
	47, 3, 'Biblical Recommendations to Consider',
	48, 3, 'The Champion\u2019s Reward',
	49, 3, 'My Brother Abedi',
	50, 3, 'Envy',
	51, 3, 'No one with Greater Love Than This',
	52, 3, 'Latvia Visit Report',
	53, 3, 'The Manna',
	54, 3, 'Divisions in the Church (1 Cor 1:10-14,21)',
	55, 3, 'Man',
	56, 3, 'Caring For Our Sisters',
	57, 3, '\u2018Growing a Balanced Diet\u2019',
	58, 3, 'What About Witnessing',
	59, 3, 'God Is Love and God Never Gives Up',
	60, 3, 'Discipline of the Tongue',
	61, 3, 'Pakistani Brethren Visit India',
	62, 3, 'Denial of One\u2019s Salvation',
	63, 3, 'Forgiveness',
	64, 3, 'Just Some Reminders',
	65, 3, 'Compare These With The Present Day',
	66, 3, 'Obedience and Faith',
	67, 3, 'Preaching in Swaziland',
	68, 3, 'Christianity - A  Religion of Peace');

function _onchange(selobj) {
	var m = selobj.selectedIndex;
	var v = selobj.options[m].value;
	if (v == '0') {
		document.location.href="/doc/gn200601-en";
	} else if (v != '-1') {
		document.location.href="/doc/gn200601-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);