var chapter_list = new Array(
  ["Ch.001","c001"],
  ["Ch.002","c002"],
  ["Ch.003","c003"],
  ["Ch.004","c004"],
  ["Ch.005","c005"],
  ["Ch.006","c006"],
  ["Ch.007","c007"],
  ["Ch.008","c008"],
  ["Ch.009","c009"],
  ["Ch.010","c010"],
  ["Ch.011","c011"],
  ["Ch.011.1: omake (Part 1)","c011.1"],
  ["Ch.011.2: omake (Part 2)","c011.2"],
  ["Ch.012","c012"],
  ["Ch.013","c013"],
  ["Ch.014: The Day After II","c014"],
  ["Ch.015: The After","c015"]
);

var total_chapters = 17;

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;
