var chapter_list = new Array(
  ["Ch.001.1","c001.1"],
  ["Ch.001.2","c001.2"],
  ["Ch.001.3","c001.3"],
  ["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.012","c012"],
  ["Ch.013","c013"],
  ["Ch.014","c014"],
  ["Ch.015","c015"],
  ["Ch.016","c016"],
  ["Ch.017","c017"],
  ["Ch.018","c018"],
  ["Ch.019","c019"],
  ["Ch.020","c020"],
  ["Ch.021","c021"],
  ["Ch.022","c022"],
  ["Ch.023","c023"],
  ["Ch.024","c024"]
);

var total_chapters = 26;

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;

