var chapter_list = new Array(
  ["Vol.01 Ch.001: The Black Swan And Akabara","v01/c001"],
  ["Vol.01 Ch.002.1: Wings Of The Town","v01/c002.1"],
  ["Vol.01 Ch.002.2: Wings Of The Town","v01/c002.2"],
  ["Vol.01 Ch.003: Gateway To The Underworld Of Japanese Lore","v01/c003"],
  ["Vol.02 Ch.004: Magical Hour","v02/c004"],
  ["Vol.02 Ch.005: The 23rd Hour","v02/c005"],
  ["Vol.02 Ch.006: Rendezvous","v02/c006"],
  ["Vol.02 Ch.007: Dance With The Fox","v02/c007"],
  ["Vol.02 Ch.008: Frozen Moon","v02/c008"],
  ["Vol.03 Ch.009: Love Lies Bleeding","v03/c009"],
  ["Vol.03 Ch.010: Beyond A Reasonable Doubt","v03/c010"],
  ["Vol.03 Ch.011: I Will Fear No Evil","v03/c011"],
  ["Vol.03 Ch.012: Echo Round His Bones","v03/c012"],
  ["Vol.03 Ch.013: Who Goes There?","v03/c013"],
  ["Vol.04 Ch.014: Tonight, the Sky falls...","v04/c014"],
  ["Vol.04 Ch.015: The Greatest Invasion in History","v04/c015"],
  ["Vol.04 Ch.016: Destroy the invaders","v04/c016"],
  ["Vol.04 Ch.017: For the Separation which Lasts an Eternity","v04/c017"],
  ["Vol.04 Ch.018: Lady Phantom","v04/c018"],
  ["Vol.05 Ch.019: All The Way Home","v05/c019"],
  ["Vol.05 Ch.020: The Origin of the Star","v05/c020"],
  ["Vol.05 Ch.021: Dye the Moon Red","v05/c021"],
  ["Vol.05 Ch.022: Infinite Cross","v05/c022"],
  ["Vol.05 Ch.023: Moonlight of Corrosion","v05/c023"],
  ["Vol.06 Ch.024: Night Lullaby","v06/c024"],
  ["Vol.06 Ch.025: Unheard Cries","v06/c025"],
  ["Vol.06 Ch.026: From Within the Maze","v06/c026"],
  ["Vol.06 Ch.027: The Second Before Dawn","v06/c027"],
  ["Vol.06 Ch.028: The One Called &quot;Akabara&quot;","v06/c028"],
  ["Vol.07 Ch.029: Descend","v07/c029"],
  ["Vol.07 Ch.030: Portrait of a Queen","v07/c030"],
  ["Vol.07 Ch.031: The King's Beloved Moon","v07/c031"],
  ["Vol.07 Ch.032: Akabara-san, to You the Moon's Blessing","v07/c032"],
  ["Vol.07 Ch.033: Whose Hands was it that were Covered with Blood","v07/c033"],
  ["Vol.08 Ch.034: The Story Of Very Beautiful Souls","v08/c034"],
  ["Vol.08 Ch.035: Once Again, The Sky Falls","v08/c035"],
  ["Vol.08 Ch.036: The Celestial Sphere of Feathers","v08/c036"],
  ["Vol.08 Ch.037: There is a Voice that Calls, Open Your Eyes","v08/c037"],
  ["Vol.08 Ch.038: The Unforgivable Ones","v08/c038"],
  ["Vol.09 Ch.039: The Black Swan's Equation","v09/c039"],
  ["Vol.09 Ch.040: Story of a Young Girl","v09/c040"],
  ["Vol.09 Ch.041: Where There is Hatred, There is Bloodshed","v09/c041"],
  ["Vol.09 Ch.042: The Peacock Dances in the Endless Night","v09/c042"],
  ["Vol.09 Ch.043: Faraway Moon, Faraway Blessing","v09/c043"],
  ["Vol.09 Ch.043.5: Omake","v09/c043.5"]
);

var total_chapters = 45;

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;

