var chapter_list = new Array(
  ["Vol.01 Ch.001: Montblanc","v01/c001"],
  ["Vol.01 Ch.002: Gesicht","v01/c002"],
  ["Vol.01 Ch.003: Brau-1589","v01/c003"],
  ["Vol.01 Ch.004: North #2 (Part 1)","v01/c004"],
  ["Vol.01 Ch.005: North #2 (Part 2)","v01/c005"],
  ["Vol.01 Ch.006: North #2 (Part 3)","v01/c006"],
  ["Vol.01 Ch.007: Brando","v01/c007"],
  ["Vol.02 Ch.008: Tetsuwan Atom","v02/c008"],
  ["Vol.02 Ch.009: Professor Ochanomizu","v02/c009"],
  ["Vol.02 Ch.010: Heracles","v02/c010"],
  ["Vol.02 Ch.011: Different Battlegrounds","v02/c011"],
  ["Vol.02 Ch.012: Family Portrait","v02/c012"],
  ["Vol.02 Ch.013: Mistaken Memories","v02/c013"],
  ["Vol.02 Ch.014: Dr. Roosevelt","v02/c014"],
  ["Vol.02 Ch.015: Enemy Parts","v02/c015"],
  ["Vol.03 Ch.016: Uran","v03/c016"],
  ["Vol.03 Ch.017: Death to the Machines!!","v03/c017"],
  ["Vol.03 Ch.018: Zeronium","v03/c018"],
  ["Vol.03 Ch.019: Epsilon","v03/c019"],
  ["Vol.03 Ch.020: Robot-Hater","v03/c020"],
  ["Vol.03 Ch.021: Uran's Search","v03/c021"],
  ["Vol.03 Ch.022: Pluto","v03/c022"],
  ["Vol.03 Ch.023: Wandering Souls","v03/c023"],
  ["Vol.04 Ch.024: Professor's Day Off","v04/c024"],
  ["Vol.04 Ch.025: Tornado Weather","v04/c025"],
  ["Vol.04 Ch.026: Showdown","v04/c026"],
  ["Vol.04 Ch.027: A Different Dream","v04/c027"],
  ["Vol.04 Ch.028: Emergency Call","v04/c028"],
  ["Vol.04 Ch.029: A Murmuring Shadow","v04/c029"],
  ["Vol.04 Ch.030: The Three Professors at Kimberly","v04/c030"],
  ["Vol.04 Ch.031: The Greatest Robot on Earth","v04/c031"],
  ["Vol.05 Ch.032: Scars of Memory","v05/c032"],
  ["Vol.05 Ch.033: The Victors, the Wise, the Living","v05/c033"],
  ["Vol.05 Ch.034: God's Choice","v05/c034"],
  ["Vol.05 Ch.035: Respond, Gesicht","v05/c035"],
  ["Vol.05 Ch.036: The Pursuit of Hatred","v05/c036"],
  ["Vol.05 Ch.037: A Sorrowful Visitor","v05/c037"],
  ["Vol.05 Ch.038: Chaos of Six Billion","v05/c038"],
  ["Vol.05 Ch.039: The Imprisoned King","v05/c039"],
  ["Vol.06 Ch.040: The Wise Man of Sand","v06/c040"],
  ["Vol.06 Ch.041: Sahad","v06/c041"],
  ["Vol.06 Ch.042: God of the Underworld's Home","v06/c042"],
  ["Vol.06 Ch.043: Chance Meeting With Death","v06/c043"],
  ["Vol.06 Ch.044: I Am Pluto","v06/c044"],
  ["Vol.06 Ch.045: Reparation and Negotiation","v06/c045"],
  ["Vol.06 Ch.046: End of the Dream","v06/c046"],
  ["Vol.06 Ch.047: Real Tears","v06/c047"],
  ["Vol.07 Ch.048: The Polarization of Six Billion","v07/c048"],
  ["Vol.07 Ch.049: Surprise Party","v07/c049"],
  ["Vol.07 Ch.050: Eat the World","v07/c050"],
  ["Vol.07 Ch.051: Two Suns","v07/c051"],
  ["Vol.07 Ch.052: Wassily","v07/c052"],
  ["Vol.07 Ch.053: The Battle at Belegum Castle","v07/c053"],
  ["Vol.07 Ch.054: The Birth of Sorrow","v07/c054"],
  ["Vol.07 Ch.055: The Great Awakening","v07/c055"],
  ["Vol.08 Ch.056: The Formula for Destruction","v08/c056"],
  ["Vol.08 Ch.057: Whereabouts of the Heart","v08/c057"],
  ["Vol.08 Ch.058: Old Friend","v08/c058"],
  ["Vol.08 Ch.059: Various Reunions","v08/c059"],
  ["Vol.08 Ch.060: The Real Truth","v08/c060"],
  ["Vol.08 Ch.061: The Time of Destruction","v08/c061"],
  ["Vol.08 Ch.062: Gesicht's Last Words","v08/c062"],
  ["Vol.08 Ch.063: A Wish to the Stars","v08/c063"],
  ["Vol.08 Ch.064: The Sound of the End","v08/c064"],
  ["Vol.08 Ch.065: The World's Strongest Robot","v08/c065"]
);

var total_chapters = 65;

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;
