titlelist = Array(0, 1, 'Suffering - Through the Apparent Silence of God',
	2, 3, '1. About suffering',
	3, 3, '2. Is God hiding His face when He is seemingly silent?',
	4, 3, '3. Why does it have to be suffering that leads us to the joy?',
	5, 3, '4. What do we learn from our suffering?',
	6, 3, '5. Hope in a future, when there seems no future in suffering',
	7, 3, '6. When the answer from God is “No” and the suffering continues',
	8, 3, '7. Are we disappointed with God when we suffer?',
	9, 3, '8. More than importuning in importuning for our suffering hearts',
	10, 3, '9. If the answer is “no”, what then does God offer in our suffering?',
	11, 3, '10. Clear words from God about suffering - creation to the kings',
	12, 3, '11. Different words from God about suffering - kings to the prophets',
	13, 3, '12. Jesus’ answers, about God’s apparent silence, were still not enough',
	14, 3, '13. Was the mission of the son of God perceived as a failure?',
	15, 3, '14. What did the terrible crucifixion do for us in our suffering?',
	16, 3, '15. How did God instruct the people now about joy and suffering?',
	17, 3, '16. Our righteous response to God is His reward',
	18, 3, '17. God’s measure is not our measure',
	19, 3, '18. Love God and be content with the “no” answer to our suffering',
	20, 3, '19. Are we satisfied with God’s answer about suffering?',
	21, 3, '20. We are incomplete without the mind of God in suffering',
	22, 3, '21. We are surprised by time in our joys and our sufferings',
	23, 3, '22. Miracles in our time of suffering',
	24, 3, '23. We are surprised by any joy found in suffering',
	25, 3, '24. Memories are important in suffering',
	26, 3, '25. Choices to make in our suffering',
	27, 3, '26. God’s non answer in our suffering',
	28, 3, '27. God’s promises to us in our suffering',
	29, 3, 'Preface');

function _onchange(selobj) {
	var m = selobj.selectedIndex;
	var v = selobj.options[m].value;
	if (v == '0') {
		document.location.href="/doc/silentsuffering-en";
	} else if (v != '-1') {
		document.location.href="/doc/silentsuffering-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);