var chapter_list = new Array(
  ["Vol.00 Ch.000.1","v00/c000.1"],
  ["Vol.01 Ch.001: The Girl on the Edge","v01/c001"],
  ["Vol.01 Ch.002: After School, Underground","v01/c002"],
  ["Vol.01 Ch.003: Christmas Date","v01/c003"],
  ["Vol.01 Ch.004: Duel at Deni's","v01/c004"],
  ["Vol.02 Ch.005: Breaking into the Hot Springs on a Snowy Mountain","v02/c005"],
  ["Vol.02 Ch.006: Trash Mountain Requiem","v02/c006"],
  ["Vol.02 Ch.007: Oh My God Girl","v02/c007"],
  ["Vol.02 Ch.008: Beginning of the End","v02/c008"],
  ["Vol.03 Ch.009: Freedom x Freedom","v03/c009"],
  ["Vol.03 Ch.010: Gone with the wind","v03/c010"],
  ["Vol.03 Ch.011: Tomorrow Never Dies","v03/c011"],
  ["Vol.03 Ch.012: The Forbibben Sanctuary","v03/c012"],
  ["Vol.04 Ch.013: The Women's Great Battleship","v04/c013"],
  ["Vol.04 Ch.014: Anger Outburst Dirt Man","v04/c014"],
  ["Vol.04 Ch.015: The Inugami and the Girl","v04/c015"],
  ["Vol.04 Ch.016: Song of the Beasts","v04/c016"],
  ["Vol.04 Ch.017: Summer Vacation of Slaughter","v04/c017"],
  ["Vol.05 Ch.018: Summer Vacation of Memories","v05/c018"],
  ["Vol.05 Ch.019: Dozing Tamemo Garden","v05/c019"],
  ["Vol.05 Ch.020: Indoor Fireworks Convention","v05/c020"],
  ["Vol.05 Ch.021: Summer Vacation of Downpours","v05/c021"],
  ["Vol.05 Ch.022: Lake Bag Haunted Mansion","v05/c022"],
  ["Vol.06 Ch.023: Tropical Ghost Train","v06/c023"],
  ["Vol.06 Ch.024: Crazy. Cooling-off Festival","v06/c024"],
  ["Vol.06 Ch.025: Resulting Underground Gallery","v06/c025"],
  ["Vol.06 Ch.026: Welcome to the Mansion of Thrills","v06/c026"],
  ["Vol.06 Ch.027: Uninhabited Island of the Twilight","v06/c027"],
  ["Vol.06 Ch.027.5: Volume 6 Extras","v06/c027.5"],
  ["Vol.07 Ch.028: Memorial","v07/c028"],
  ["Vol.07 Ch.029: Sparkling Darkness","v07/c029"],
  ["Vol.07 Ch.030: Tears of a Bloodbath","v07/c030"],
  ["Vol.07 Ch.031: The Order to Erase Kagura","v07/c031"],
  ["Vol.07 Ch.032: Heroine Forever","v07/c032"],
  ["Vol.08 Ch.033: Tokyo Ghost Area","v08/c033"],
  ["Vol.08 Ch.034: Vengeful Spirit and School Life","v08/c034"],
  ["Vol.08 Ch.035: Ghost Consultants","v08/c035"],
  ["Vol.08 Ch.036: Hound of Yin and Yang","v08/c036"],
  ["Vol.08 Ch.036.5: Extra","v08/c036.5"],
  ["Vol.09 Ch.037: Eternal Love - Legend of the Wind And The Latin Fighter","v09/c037"],
  ["Vol.09 Ch.038: Paradise of the Dead","v09/c038"],
  ["Vol.09 Ch.039: Counter Measures Squad/Reloaded","v09/c039"],
  ["Vol.09 Ch.040: Return Of The Dark Heroine","v09/c040"],
  ["Vol.10 Ch.041: Selfish Love, Selfish Hurt, The Destined One","v10/c041"],
  ["Vol.10 Ch.042: Fugitive Sisters","v10/c042"],
  ["Vol.10 Ch.043: Heartbreak Chaser","v10/c043"],
  ["Vol.10 Ch.044: Creeping Decimation Plan","v10/c044"],
  ["Vol.10 Ch.044.5: Phantom Illusion","v10/c044.5"],
  ["Vol.10 Ch.045","v10/c045"]
);

var total_chapters = 49;

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;
