var chapter_list = new Array(
  ["Vol.01 Ch.001.1: The Confined Elagabalus","v01/c001.1"],
  ["Vol.01 Ch.001.2: The Confined Elagabalus","v01/c001.2"],
  ["Vol.01 Ch.002.1: Hieroclesâ€™ Delusion","v01/c002.1"],
  ["Vol.01 Ch.002.2: Hieroclesâ€™ Delusion","v01/c002.2"],
  ["Vol.01 Ch.002.3: Hieroclesâ€™ Delusion","v01/c002.3"],
  ["Vol.01 Ch.003: Fleeting Dark Abba","v01/c003"],
  ["Vol.02 Ch.004: Arnold Paole and The Shadow of Death","v02/c004"],
  ["Vol.02 Ch.005: Addieâ€™s Contemplation","v02/c005"],
  ["Vol.02 Ch.006: Testing Theories","v02/c006"],
  ["Vol.03 Ch.007: An Incubus Calls Your Name Once","v03/c007"],
  ["Vol.03 Ch.008: Zoticus' Entertainer","v03/c008"],
  ["Vol.03 Ch.009: A Prussis' Peek Into Isolation","v03/c009"],
  ["Vol.03 Ch.010: Nulla, or The Ghost of the Costa Nostra","v03/c010"],
  ["Vol.03 Ch.011: Rain Falling on The Dirupo (Part 1)","v03/c011"],
  ["Vol.03 Ch.012: Rain Falling on The Dirupo (Part 2)","v03/c012"],
  ["Vol.04 Ch.013: Rain Falling on The Dirupo (Part 3)","v04/c013"],
  ["Vol.04 Ch.014: The Cardinal's Red Suspicion","v04/c014"],
  ["Vol.04 Ch.015: The One Who Tempts Like Eve","v04/c015"],
  ["Vol.04 Ch.016: Dinner at the Masquerade Ball","v04/c016"],
  ["Vol.04 Ch.017: Even So, Raoul Declares his Love","v04/c017"],
  ["Vol.05 Ch.018: Worthless Yet Beautiful Satan","v05/c018"],
  ["Vol.05 Ch.019: The Lookalike Bears the Trace of Oblivion.","v05/c019"],
  ["Vol.05 Ch.020: The Personality and Behavior of a Young Wolf","v05/c020"],
  ["Vol.05 Ch.021: Playhouse in the Birdcage with an Evil Audience","v05/c021"],
  ["Vol.05 Ch.022: Bluff, or the Love Letter and Sudoku","v05/c022"],
  ["Vol.05 Ch.023: A Scapegoat Bites too Hard","v05/c023"]
);

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;

