var chapter_list = new Array(
  ["Vol.01 Ch.001: The Net's Offspring","v01/c001"],
  ["Vol.01 Ch.002: Memories of Earth","v01/c002"],
  ["Vol.01 Ch.003: Techno Nomads","v01/c003"],
  ["Vol.01 Ch.003.5: Post-LOG","v01/c003.5"],
  ["Vol.01 Ch.004: The Authorities","v01/c004"],
  ["Vol.01 Ch.005: Escape","v01/c005"],
  ["Vol.01 Ch.006: Silicon Souls","v01/c006"],
  ["Vol.01 Ch.007: The Builders","v01/c007"],
  ["Vol.02 Ch.008.1: EX-LOG:  Nest-Ruine \ 8:  The Capitol","v02/c008.1"],
  ["Vol.02 Ch.008.2: [continuation]","v02/c008.2"],
  ["Vol.02 Ch.008.3: The Capitol 3","v02/c008.3"],
  ["Vol.02 Ch.009.1: The Corporation","v02/c009.1"],
  ["Vol.02 Ch.009.2: [continuation]","v02/c009.2"],
  ["Vol.02 Ch.009.3: [continuation]","v02/c009.3"],
  ["Vol.02 Ch.010: Net Sphere","v02/c010"],
  ["Vol.02 Ch.011: Safety Guard","v02/c011"],
  ["Vol.03 Ch.012.1: The Great Surf","v03/c012.1"],
  ["Vol.03 Ch.012.2: [continuation]","v03/c012.2"],
  ["Vol.03 Ch.013: Electrosilos Fishermen","v03/c013"],
  ["Vol.03 Ch.014: Planters","v03/c014"],
  ["Vol.03 Ch.015: Awakening","v03/c015"],
  ["Vol.03 Ch.016: Assault","v03/c016"],
  ["Vol.03 Ch.017: Basic Language","v03/c017"],
  ["Vol.03 Ch.018: The Massacre","v03/c018"],
  ["Vol.04 Ch.019: Backup Cyberspace","v04/c019"],
  ["Vol.04 Ch.020: Limit Cancel","v04/c020"],
  ["Vol.04 Ch.021: Hybrid","v04/c021"],
  ["Vol.04 Ch.022: Toha Heavy Industries","v04/c022"],
  ["Vol.04 Ch.023: Electronic Knight","v04/c023"],
  ["Vol.04 Ch.024: The Eighth Cave","v04/c024"],
  ["Vol.05 Ch.025: Hacking","v05/c025"],
  ["Vol.05 Ch.026: Scattered Space","v05/c026"],
  ["Vol.05 Ch.027: Gravity Furnace","v05/c027"],
  ["Vol.05 Ch.028: Version","v05/c028"],
  ["Vol.05 Ch.029: Cave 13","v05/c029"],
  ["Vol.05 Ch.030: Cease Fire","v05/c030"],
  ["Vol.06 Ch.031: Sanakan and Cibo","v06/c031"],
  ["Vol.06 Ch.032: Vibration","v06/c032"],
  ["Vol.06 Ch.033: Collapse","v06/c033"],
  ["Vol.06 Ch.034: Dissolution","v06/c034"],
  ["Vol.06 Ch.035: Disappearance","v06/c035"],
  ["Vol.06 Ch.036: Beautiful Life","v06/c036"],
  ["Vol.06 Ch.037: Unofficial Megastructure","v06/c037"],
  ["Vol.07 Ch.038.1: Central Nexus","v07/c038.1"],
  ["Vol.07 Ch.038.2: [continuation]","v07/c038.2"],
  ["Vol.07 Ch.039: Class 1 Critical Effect Weapon","v07/c039"],
  ["Vol.07 Ch.040: Capture","v07/c040"],
  ["Vol.07 Ch.041: Anti-Intrusion Electron Space","v07/c041"],
  ["Vol.07 Ch.042: The Megastructure's Internal Fissure","v07/c042"],
  ["Vol.07 Ch.043: Special Safeguards","v07/c043"],
  ["Vol.08 Ch.044: Inside the Megastructure","v08/c044"],
  ["Vol.08 Ch.045: Multiple Dispersion Molecule Movement","v08/c045"],
  ["Vol.08 Ch.046: Provisional Connection Certification","v08/c046"],
  ["Vol.08 Ch.047: Raid","v08/c047"],
  ["Vol.08 Ch.048: Urge","v08/c048"],
  ["Vol.08 Ch.049: Level 9","v08/c049"],
  ["Vol.08 Ch.050: Far-Off","v08/c050"],
  ["Vol.09 Ch.051: Parallel Electricity Storage Tank Cluster","v09/c051"],
  ["Vol.09 Ch.052: The Caller","v09/c052"],
  ["Vol.09 Ch.053: Lacking Escape","v09/c053"],
  ["Vol.09 Ch.054: The Captor","v09/c054"],
  ["Vol.09 Ch.055: Another Meeting","v09/c055"],
  ["Vol.09 Ch.056: People","v09/c056"],
  ["Vol.09 Ch.057: The Observer","v09/c057"],
  ["Vol.10 Ch.058: Unified Metal Beams","v10/c058"],
  ["Vol.10 Ch.059: Continuum","v10/c059"],
  ["Vol.10 Ch.060: Organic","v10/c060"],
  ["Vol.10 Ch.061: Burning Silicon","v10/c061"],
  ["Vol.10 Ch.062: Rescue of the Receptacle","v10/c062"],
  ["Vol.10 Ch.063: Exterminator, First Class","v10/c063"],
  ["Vol.10 Ch.064: Retrieved Consciousness","v10/c064"],
  ["Vol.10 Ch.065: The Edge of the City","v10/c065"]
);

var total_chapters = 72;

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;

