var chapter_list = new Array(
  ["Vol.01 Ch.001: My Dream Is...","v01/c001"],
  ["Vol.01 Ch.002: My Secret","v01/c002"],
  ["Vol.01 Ch.003: I'm Telling the Truth","v01/c003"],
  ["Vol.01 Ch.004: My Solution","v01/c004"],
  ["Vol.02 Ch.005: First Day","v02/c005"],
  ["Vol.02 Ch.006: The Unprecedented","v02/c006"],
  ["Vol.02 Ch.007: Perpendicular Fall","v02/c007"],
  ["Vol.02 Ch.008: The Police I.D.","v02/c008"],
  ["Vol.02 Ch.009: The Difference Between Truth and Lies","v02/c009"],
  ["Vol.02 Ch.010: Shattered to Pieces!?","v02/c010"],
  ["Vol.02 Ch.011: The Unforgivable Crime","v02/c011"],
  ["Vol.02 Ch.012: All or Nothing!!","v02/c012"],
  ["Vol.02 Ch.013: Survival Knife","v02/c013"],
  ["Vol.03 Ch.014: Tattoo","v03/c014"],
  ["Vol.03 Ch.015: The Metal Bat","v03/c015"],
  ["Vol.03 Ch.016: Futbol de Salon","v03/c016"],
  ["Vol.03 Ch.017: Onigami Cell Phone","v03/c017"],
  ["Vol.03 Ch.018: Flowerpot","v03/c018"],
  ["Vol.03 Ch.019: The Opposing Train","v03/c019"],
  ["Vol.03 Ch.020: Parakeet","v03/c020"],
  ["Vol.03 Ch.021: Bar-b-que","v03/c021"],
  ["Vol.03 Ch.022: Deep-sea Fish","v03/c022"],
  ["Vol.04 Ch.023: Ikefukuro","v04/c023"],
  ["Vol.04 Ch.024: Blackboard","v04/c024"],
  ["Vol.04 Ch.025: Bucket Relay","v04/c025"],
  ["Vol.04 Ch.026: Gang Up","v04/c026"],
  ["Vol.04 Ch.027: Shinken","v04/c027"],
  ["Vol.04 Ch.028: Numb","v04/c028"],
  ["Vol.04 Ch.029: Pot-bellied Johnny","v04/c029"],
  ["Vol.04 Ch.030: Bloody Mary","v04/c030"],
  ["Vol.04 Ch.031: A Plea to a Friend","v04/c031"],
  ["Vol.05 Ch.032: Little Run-away","v05/c032"],
  ["Vol.05 Ch.033: Sister's Donuts","v05/c033"],
  ["Vol.05 Ch.034: The Way to Not Become a Criminal","v05/c034"],
  ["Vol.05 Ch.035: Suicide Seat","v05/c035"],
  ["Vol.05 Ch.036: The Bitter Truth","v05/c036"],
  ["Vol.05 Ch.037: Ride to Hounds","v05/c037"],
  ["Vol.05 Ch.038: Face to Face","v05/c038"],
  ["Vol.05 Ch.039: Defensive Kuma-san Is Unsettled","v05/c039"],
  ["Vol.05 Ch.040: The Archangel Dragnet","v05/c040"],
  ["Vol.06 Ch.041: A Right Hook for the Angel","v06/c041"],
  ["Vol.06 Ch.042: Count 2.99","v06/c042"],
  ["Vol.06 Ch.043: No Comment","v06/c043"],
  ["Vol.06 Ch.044: Just One Thing","v06/c044"],
  ["Vol.06 Ch.045: Full-time Tiger, Part-time Wolf","v06/c045"],
  ["Vol.06 Ch.046: The Day the Two Met","v06/c046"],
  ["Vol.06 Ch.047: The Hair-Raising Terrifying No Teeth","v06/c047"],
  ["Vol.06 Ch.048: Black Trap","v06/c048"],
  ["Vol.06 Ch.049: Everyone's Weapons","v06/c049"],
  ["Vol.07 Ch.050: Everyone's Settlement","v07/c050"],
  ["Vol.07 Ch.051: Temptation x Doubt x Confusion","v07/c051"],
  ["Vol.07 Ch.052: Five Delusions","v07/c052"],
  ["Vol.07 Ch.053: Trouble in the Crowd","v07/c053"],
  ["Vol.07 Ch.054: H Is No Good...?","v07/c054"],
  ["Vol.07 Ch.055: It Has to be in this Store!?","v07/c055"],
  ["Vol.07 Ch.056: Not Forgetting About Revenge","v07/c056"],
  ["Vol.07 Ch.057: Steal Lips","v07/c057"],
  ["Vol.07 Ch.058: Do or Die","v07/c058"],
  ["Vol.08 Ch.059: Atonement and Recompense","v08/c059"],
  ["Vol.08 Ch.060: Battle Deep in the Woods","v08/c060"],
  ["Vol.08 Ch.061: If Taketora Is With Her","v08/c061"],
  ["Vol.08 Ch.062: Stretch Your Hand Out of the Dark","v08/c062"]
);

var total_chapters = 62;

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;

