var chapter_list = new Array(
  ["Vol.01 Ch.000","v01/c000"],
  ["Vol.02 Ch.000","v02/c000"],
  ["Vol.03 Ch.000","v03/c000"],
  ["Vol.04 Ch.000","v04/c000"],
  ["Vol.05 Ch.000","v05/c000"],
  ["Vol.06 Ch.000","v06/c000"],
  ["Vol.07 Ch.000","v07/c000"],
  ["Vol.08 Ch.000","v08/c000"],
  ["Vol.09 Ch.000","v09/c000"],
  ["Vol.10 Ch.000","v10/c000"],
  ["Vol.11 Ch.000","v11/c000"],
  ["Vol.12 Ch.089","v12/c089"],
  ["Vol.12 Ch.090","v12/c090"],
  ["Vol.12 Ch.091: murders on a plate 1","v12/c091"]
);

var total_chapters = 14;

for (var i = 0; i < chapter_list.length; i++) {
  document.getElementById('top_chapter_list').options[i] = new Option(chapter_list[i][0], chapter_list[i][1]);
  document.getElementById('bottom_chapter_list').options[i] = new Option(chapter_list[i][0], chapter_list[i][1]);
}
document.getElementById('top_chapter_list').value=current_chapter;
document.getElementById('bottom_chapter_list').value=current_chapter;
var current_chapter_index = document.getElementById('top_chapter_list').selectedIndex;
