var chapter_list = new Array(
  ["Vol.01 Ch.001: The Awakening","v01/c001"],
  ["Vol.01 Ch.002: The Blood of Oath","v01/c002"],
  ["Vol.01 Ch.003: Raimei Arrives","v01/c003"],
  ["Vol.01 Ch.004: One-sided Memory","v01/c004"],
  ["Vol.01 Ch.005: Impact","v01/c005"],
  ["Vol.02 Ch.006: Kotarou Fuuma","v02/c006"],
  ["Vol.02 Ch.007: Mission Announcement","v02/c007"],
  ["Vol.02 Ch.008: Greed","v02/c008"],
  ["Vol.02 Ch.009: Palm","v02/c009"],
  ["Vol.02 Ch.010: Choice","v02/c010"],
  ["Vol.02 Ch.010.5: Safe Haven","v02/c010.5"],
  ["Vol.03 Ch.011: Indecipherable Heart","v03/c011"],
  ["Vol.03 Ch.012: Unveiled Heart","v03/c012"],
  ["Vol.03 Ch.013: Scholar´s Heart","v03/c013"],
  ["Vol.03 Ch.014: Enlightened Heart","v03/c014"],
  ["Vol.03 Ch.015: Reckless Heart","v03/c015"],
  ["Vol.04 Ch.016: Direction of the Heart","v04/c016"],
  ["Vol.04 Ch.017: Linked Hearts","v04/c017"],
  ["Vol.04 Ch.017.5: Unitamente","v04/c017.5"],
  ["Vol.04 Ch.018: Tuning","v04/c018"],
  ["Vol.04 Ch.019: First Symphony","v04/c019"],
  ["Vol.04 Ch.020: Polka - Raimei and Raikou","v04/c020"],
  ["Vol.04 Ch.021: Polka - Raimei and Raikou 2","v04/c021"],
  ["Vol.05 Ch.022: Polka - Raimei and Raikou 3","v05/c022"],
  ["Vol.05 Ch.023: Polka - Raimei and Raikou 4","v05/c023"],
  ["Vol.05 Ch.024: Polka - Raimei and Raikou 5","v05/c024"],
  ["Vol.05 Ch.025: Polka - Raimei and Raikou 6","v05/c025"],
  ["Vol.05 Ch.026: Curtain Call","v05/c026"],
  ["Vol.05 Ch.027: Determination","v05/c027"],
  ["Vol.06 Ch.028: Will (weep)","v06/c028"],
  ["Vol.06 Ch.029: Change (syrup)","v06/c029"],
  ["Vol.06 Ch.030: Plus (step)","v06/c030"],
  ["Vol.06 Ch.031: Seat (sharp)","v06/c031"],
  ["Vol.06 Ch.032: Strange (turnup)","v06/c032"],
  ["Vol.07 Ch.033: Healing Will (Trap)","v07/c033"],
  ["Vol.07 Ch.034: Shot (Drip)","v07/c034"],
  ["Vol.07 Ch.035: Intimidation...Death (Sheep)","v07/c035"],
  ["Vol.07 Ch.036: These Thoughts...(Scrap)","v07/c036"],
  ["Vol.07 Ch.037: Stone (help)","v07/c037"],
  ["Vol.07 Ch.038: Dying Wish (flap)","v07/c038"],
  ["Vol.08 Ch.039: Tears and Scar","v08/c039"],
  ["Vol.08 Ch.040: Having a Dream of Immortality","v08/c040"],
  ["Vol.08 Ch.041: Farewell, Thobari-sensei","v08/c041"],
  ["Vol.08 Ch.042: The Voice of the God of Death is Calling Me","v08/c042"],
  ["Vol.08 Ch.043: I Think We'll Go and Find the Time of when Yoite Really Lived","v08/c043"],
  ["Vol.09 Ch.044","v09/c044"],
  ["Vol.09 Ch.045: Kotodama","v09/c045"],
  ["Vol.09 Ch.045.1","v09/c045.1"],
  ["Vol.09 Ch.046: The Time when I Found You","v09/c046"],
  ["Vol.09 Ch.047: Let Us Have Good Dreams","v09/c047"],
  ["Vol.10 Ch.048","v10/c048"],
  ["Vol.10 Ch.049: The Bird In The Sky","v10/c049"],
  ["Vol.10 Ch.050.1: Yoite","v10/c050.1"],
  ["Vol.10 Ch.050.2: Yoite","v10/c050.2"],
  ["Vol.10 Ch.050.3: Yoite","v10/c050.3"],
  ["Vol.10 Ch.051: Brats like these","v10/c051"],
  ["Vol.11 Ch.052: The Dangerous Thing That has Become a Bundle","v11/c052"],
  ["Vol.11 Ch.053","v11/c053"],
  ["Vol.11 Ch.054: The Lost Memories, the Lost Shape","v11/c054"],
  ["Vol.11 Ch.055: From Now On, You are My Helper","v11/c055"],
  ["Vol.11 Ch.056: Taking Shelter From Snow","v11/c056"],
  ["Vol.11 Ch.057: Faith in my Palms","v11/c057"],
  ["Vol.12 Ch.058: The promise that cannot be kept","v12/c058"],
  ["Vol.12 Ch.059: To The place Where Memories Return [Part 1]","v12/c059"],
  ["Vol.12 Ch.060: To the Place Where Memories Return [Part 2]","v12/c060"],
  ["Vol.12 Ch.061: To the Place Where Memories Return [Part 3]","v12/c061"],
  ["Vol.12 Ch.062: To the Place Where Memories Return [Part 4]","v12/c062"],
  ["Vol.13 Ch.063: To the Place Where Memories Return [Part 5]","v13/c063"]
);

var total_chapters = 68;

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;
