var chapter_list = new Array(
  ["Vol.01 Ch.001: Cross Academy: Night Class","v01/c001"],
  ["Vol.01 Ch.002: Zero's Secret","v01/c002"],
  ["Vol.01 Ch.003: Vampires within the Vampires","v01/c003"],
  ["Vol.01 Ch.004: The Promise...","v01/c004"],
  ["Vol.01 Ch.005: My Dear Girl","v01/c005"],
  ["Vol.01 Ch.005.5: Side Story: Night Class","v01/c005.5"],
  ["Vol.02 Ch.006: Outside Cross Academy","v02/c006"],
  ["Vol.02 Ch.007: Night Party","v02/c007"],
  ["Vol.02 Ch.008: The Forbidden Act","v02/c008"],
  ["Vol.02 Ch.009: Choices Made","v02/c009"],
  ["Vol.02 Ch.009.1: Sometimes There are Lazy Days Too","v02/c009.1"],
  ["Vol.02 Ch.009.2: Side Story: I Must Have Been Born under the &quot;Victim of Circumstances&quot; Star...","v02/c009.2"],
  ["Vol.03 Ch.010: The Lord of the Moon Dormitory","v03/c010"],
  ["Vol.03 Ch.011: Memories of Snow, Blood, and Tenderness","v03/c011"],
  ["Vol.03 Ch.012: We Were Powerless Back Then","v03/c012"],
  ["Vol.03 Ch.013: He Who Pulls the Trigger","v03/c013"],
  ["Vol.03 Ch.014: The Late Arrival: A New Student","v03/c014"],
  ["Vol.03 Ch.014.5: Side Story: The Warmth That Slipped from Her Palm And...","v03/c014.5"],
  ["Vol.04 Ch.015: Storm on the Chessboard","v04/c015"],
  ["Vol.04 Ch.016: Hidden Intentions","v04/c016"],
  ["Vol.04 Ch.017: Quid Pro Quo","v04/c017"],
  ["Vol.04 Ch.018: Hope","v04/c018"],
  ["Vol.04 Ch.019: A Spoke in the Wheel","v04/c019"],
  ["Vol.04 Ch.019.5: It's Too Frightening To Ask, &quot;Why only me?&quot;","v04/c019.5"],
  ["Vol.04 Ch.020: Game Over","v04/c020"],
  ["Vol.05 Ch.021: Guilty","v05/c021"],
  ["Vol.05 Ch.022: Things That Changed, Things That Did Not Change","v05/c022"],
  ["Vol.05 Ch.023: Lost Lambs","v05/c023"],
  ["Vol.05 Ch.024: A Small Incident","v05/c024"],
  ["Vol.05 Ch.024.5: Side Story: Vampires Covered in Blood Are Prohibited from Entering This Page!!..","v05/c024.5"],
  ["Vol.05 Ch.025: Vampire Soirée","v05/c025"],
  ["Vol.06 Ch.026: Kaname...","v06/c026"],
  ["Vol.06 Ch.027: The Archives","v06/c027"],
  ["Vol.06 Ch.028: The Kuran Family","v06/c028"],
  ["Vol.06 Ch.029: Quickening","v06/c029"],
  ["Vol.06 Ch.029.5: Side Story: Kaname-sama and I, Prior to the Night Class...","v06/c029.5"],
  ["Vol.07 Ch.001.5: Side Story: Cross Family Vacation","v07/c001.5"],
  ["Vol.07 Ch.030: To Bleed for Someone","v07/c030"],
  ["Vol.07 Ch.031: The Chosen Reply","v07/c031"],
  ["Vol.07 Ch.032: The Make-Believe Sandbox","v07/c032"],
  ["Vol.07 Ch.033: The Lover of A PureBlood","v07/c033"],
  ["Vol.07 Ch.034: Bloody World","v07/c034"],
  ["Vol.08 Ch.035: Yuuki","v08/c035"],
  ["Vol.08 Ch.036: An Impossible Wish","v08/c036"],
  ["Vol.08 Ch.037: Just Like A Sin","v08/c037"],
  ["Vol.08 Ch.038: Wrapped in Conspiracy","v08/c038"],
  ["Vol.08 Ch.039: The Shaken Academy","v08/c039"],
  ["Vol.08 Ch.040: The Original Sin, Was Held Tightly by These Hands","v08/c040"],
  ["Vol.08 Ch.040.1: extra: A Secret I Don't Know","v08/c040.1"],
  ["Vol.08 Ch.040.2: extra: Damage","v08/c040.2"],
  ["Vol.08 Ch.041: Artemis","v08/c041"],
  ["Vol.09 Ch.042: Bloody Rose","v09/c042"],
  ["Vol.09 Ch.043: Vampire Knight","v09/c043"],
  ["Vol.09 Ch.044: Attachment","v09/c044"],
  ["Vol.09 Ch.044.5: In Each of Their Respective Places","v09/c044.5"],
  ["Vol.10 Ch.045: In Each of Their Respective Places","v10/c045"],
  ["Vol.10 Ch.046: Enemies","v10/c046"],
  ["Vol.10 Ch.047: Towards Each of Their Respective Paths","v10/c047"],
  ["Vol.10 Ch.048: The Wish of the Man with the Unrequited Love","v10/c048"],
  ["Vol.10 Ch.048.5: A Certain Lady's Loving Tales of Her Marriage","v10/c048.5"],
  ["Vol.10 Ch.048.6: Cross-san's Child Rearing Diaries","v10/c048.6"],
  ["Vol.11 Ch.049: Tonight, I Held You With My Tainted Hands...","v11/c049"],
  ["Vol.11 Ch.050: In the Depths of that Dark Forest, Now You....","v11/c050"],
  ["Vol.11 Ch.051: Dilemma","v11/c051"],
  ["Vol.11 Ch.052: Beasts Madly in Love","v11/c052"],
  ["Vol.11 Ch.053: Accidental Encounters","v11/c053"],
  ["Vol.11 Ch.054: The Enemies of The PureBloods","v11/c054"],
  ["Vol.12 Ch.055: The Beginning of the Beginning","v12/c055"]
);

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;
