var chapter_list = new Array(
  ["Ch.001: Friends","c001"],
  ["Ch.002: Dream 1","c002"],
  ["Ch.003: Dreams 2","c003"],
  ["Ch.004: 5-Part O-Parts","c004"],
  ["Ch.005: lone wolf","c005"],
  ["Ch.006: Fang","c006"],
  ["Ch.007: The City of Fog","c007"],
  ["Ch.008: The Resistance","c008"],
  ["Ch.009: The Crimson Magician","c009"],
  ["Ch.010: Escape","c010"],
  ["Ch.011: Power of The Ancient People","c011"],
  ["Ch.012: The Three Tests","c012"],
  ["Ch.013: Chilin Appears!?","c013"],
  ["Ch.014: 2 versus 1","c014"],
  ["Ch.015: black batman","c015"],
  ["Ch.016: Mekisis starting!","c016"],
  ["Ch.017: The Power Of GOD","c017"],
  ["Ch.018: The road full of hardships","c018"],
  ["Ch.019: everyone's Thoughts","c019"],
  ["Ch.020: THE FINAL BATTLE","c020"],
  ["Ch.021: The  Hearts Become One","c021"],
  ["Ch.022: Contract With The Devil","c022"],
  ["Ch.023: The Old Enemy","c023"],
  ["Ch.024: The Blue Sky","c024"],
  ["Ch.025: The Legend Of The Spirit","c025"],
  ["Ch.026: Kabbalah","c026"],
  ["Ch.027: Dad,Mom","c027"],
  ["Ch.028: ORUSH","c028"],
  ["Ch.029: The Two Who Are Bound To Fate","c029"],
  ["Ch.030: The Kabbalah's Angelic Recipe","c030"],
  ["Ch.031: The OlymPiad Preliminaries Begins","c031"],
  ["Ch.032: The Chosen Two","c032"],
  ["Ch.033: MysteriousBird - Roc Bird","c033"],
  ["Ch.034: Olympia Final Stage Starts!","c034"],
  ["Ch.035: Promise","c035"],
  ["Ch.036: Definitely's Volume","c036"],
  ["Ch.037: The Real Monster","c037"],
  ["Ch.038: The Real Monster (2)","c038"],
  ["Ch.039: The Bird In A Cage","c039"],
  ["Ch.040: Heart and Shape","c040"],
  ["Ch.041","c041"],
  ["Ch.042","c042"],
  ["Ch.043: Theory of The World","c043"],
  ["Ch.044: The Big Bang","c044"],
  ["Ch.045","c045"],
  ["Ch.046: Evil King Icaros","c046"],
  ["Ch.047: Heart","c047"],
  ["Ch.048: Kaballah's Devil","c048"],
  ["Ch.049","c049"],
  ["Ch.050: 1 Hit","c050"],
  ["Ch.051: Light and Dark","c051"],
  ["Ch.052: The key of Solomon","c052"],
  ["Ch.053: Bonds","c053"],
  ["Ch.054: Ancient People","c054"],
  ["Ch.055","c055"],
  ["Ch.056: New Member","c056"],
  ["Ch.057: Break In!","c057"],
  ["Ch.058","c058"],
  ["Ch.059: Magic Trick","c059"],
  ["Ch.060: Miko's Truth","c060"],
  ["Ch.061","c061"],
  ["Ch.062: Full Moon","c062"],
  ["Ch.063","c063"],
  ["Ch.064: Zenom's Headquarters","c064"],
  ["Ch.065: The Ruin's Traps","c065"],
  ["Ch.066: Heart","c066"],
  ["Ch.067: Brothers Face Off! Memories of Scars!","c067"],
  ["Ch.068: Father's Thoughts","c068"],
  ["Ch.069: Life","c069"],
  ["Ch.070: The heart of a woman","c070"],
  ["Ch.071: Devil's Summon","c071"],
  ["Ch.072: Two Battles","c072"],
  ["Ch.073: Zenom","c073"],
  ["Ch.074: Pinky Swear","c074"],
  ["Ch.075: Armageddon","c075"],
  ["Ch.076: Final Chapter &quot;Jio Freed&quot;","c076"]
);

var total_chapters = 76;

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;

