var chapter_list = new Array(
  ["Vol.01 Ch.001: Dreary Night Murders","v01/c001"],
  ["Vol.01 Ch.002: A Sincere Night","v01/c002"],
  ["Vol.01 Ch.003: Bat Search","v01/c003"],
  ["Vol.01 Ch.004: The Bat &amp; the Ancient Text","v01/c004"],
  ["Vol.01 Ch.005: A Run Over Corpse","v01/c005"],
  ["Vol.01 Ch.006: Black or White?","v01/c006"],
  ["Vol.01 Ch.007: The Beginning of a Labyrinth","v01/c007"],
  ["Vol.01 Ch.008: Signs","v01/c008"],
  ["Vol.01 Ch.009: Bat Boy's Great Adventure (Part 1)","v01/c009"],
  ["Vol.02 Ch.010: A Continuation of the End","v02/c010"],
  ["Vol.02 Ch.011: A Continuation of the Beginning","v02/c011"],
  ["Vol.02 Ch.012: A Myriad of Suspects","v02/c012"],
  ["Vol.02 Ch.013: A Forced Destiny","v02/c013"],
  ["Vol.02 Ch.014: Shape of the Lord","v02/c014"],
  ["Vol.02 Ch.015: Father, Son, or Holy Ghost?","v02/c015"],
  ["Vol.02 Ch.016: Before the Chapel","v02/c016"],
  ["Vol.02 Ch.017: After the Church","v02/c017"],
  ["Vol.02 Ch.018: The Scroll of Momochi [1]","v02/c018"],
  ["Vol.03 Ch.019: The Scroll of Momochi [2]","v03/c019"],
  ["Vol.03 Ch.020: The Scroll of Momochi [3]","v03/c020"],
  ["Vol.03 Ch.021: The Scroll of Momochi [4]","v03/c021"],
  ["Vol.03 Ch.022: The Scroll of Momochi [5]","v03/c022"],
  ["Vol.03 Ch.023: The Scroll of Momochi [6]","v03/c023"],
  ["Vol.03 Ch.024: The Scroll of Momochi [7]","v03/c024"],
  ["Vol.03 Ch.025: The Scroll of Momochi [8]","v03/c025"],
  ["Vol.03 Ch.026: The Scroll of Momochi [9]","v03/c026"],
  ["Vol.03 Ch.027: The Scroll of Momochi [10]","v03/c027"],
  ["Vol.04 Ch.028: The Bat's Innards","v04/c028"],
  ["Vol.04 Ch.029: Lee's Innards","v04/c029"],
  ["Vol.04 Ch.030: Thus Spoke Oswald","v04/c030"],
  ["Vol.04 Ch.031: To the West, to the East","v04/c031"],
  ["Vol.04 Ch.032: The Japanese Impression","v04/c032"],
  ["Vol.04 Ch.033: The Japanese Authentication","v04/c033"],
  ["Vol.04 Ch.034: A Continuation of a Continuation","v04/c034"],
  ["Vol.04 Ch.035: An Oswald Dose of Joy","v04/c035"],
  ["Vol.04 Ch.036: An Annunciation to the 'Simpleton'","v04/c036"],
  ["Vol.04 Ch.037: The Decision at 20:10","v04/c037"],
  ["Vol.05 Ch.038: The Return of the Real One","v05/c038"],
  ["Vol.05 Ch.039: Fire in the Deep South","v05/c039"],
  ["Vol.05 Ch.040: Heat of the Night","v05/c040"],
  ["Vol.05 Ch.041: Deep South Dreams","v05/c041"],
  ["Vol.05 Ch.042: Dallas Three Years Later...","v05/c042"],
  ["Vol.05 Ch.043: A Hero's Decision","v05/c043"],
  ["Vol.05 Ch.044: Sacrifice","v05/c044"],
  ["Vol.05 Ch.045: Replica","v05/c045"],
  ["Vol.06 Ch.046: One in Body and Soul","v06/c046"],
  ["Vol.06 Ch.047: The Two Chucks","v06/c047"],
  ["Vol.06 Ch.048: Hands Off Oswald","v06/c048"],
  ["Vol.06 Ch.049: The Sought One","v06/c049"],
  ["Vol.06 Ch.050: The Administrator of the Human Race","v06/c050"],
  ["Vol.06 Ch.051: The Earthâ€¦","v06/c051"],
  ["Vol.06 Ch.052: Something There Is About Youâ€¦","v06/c052"],
  ["Vol.06 Ch.053: The Continuation of a Dreamâ€¦","v06/c053"],
  ["Vol.06 Ch.054: Something on the Moon","v06/c054"],
  ["Vol.06 Ch.055: Go Your Own Way","v06/c055"],
  ["Vol.06 Ch.056: The Final Rabbit","v06/c056"],
  ["Vol.06 Ch.057: The President's Parade","v06/c057"],
  ["Vol.06 Ch.058: A Hot Autumn Day in Dallas","v06/c058"],
  ["Vol.06 Ch.059: Successor","v06/c059"],
  ["Vol.06 Ch.060: Half In A Dream","v06/c060"],
  ["Vol.06 Ch.061: The Real Truth","v06/c061"],
  ["Vol.07 Ch.062: Kevin and Kevin","v07/c062"],
  ["Vol.07 Ch.063: Coincidence","v07/c063"],
  ["Vol.07 Ch.064: Cartoon's Destination","v07/c064"],
  ["Vol.07 Ch.065","v07/c065"],
  ["Vol.07 Ch.066","v07/c066"],
  ["Vol.07 Ch.067","v07/c067"]
);

var total_chapters = 67;

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;

