var chapter_list = new Array(
  ["Ch.001: The Worst Game In History","c001"],
  ["Ch.002: Best Friend","c002"],
  ["Ch.003: Shinji Mimura","c003"],
  ["Ch.004: The Oath","c004"],
  ["Ch.005: Other Side Of The Door","c005"],
  ["Ch.006: Yoshio Akamatsu","c006"],
  ["Ch.007: Trust","c007"],
  ["Ch.008: Mitsuko Souma","c008"],
  ["Ch.009: Kazuo Kiryama Pt. 1","c009"],
  ["Ch.010: Kazuo Kiriyama Pt.2","c010"],
  ["Ch.011: Treasure","c011"],
  ["Ch.012: Those Who Come Forth","c012"],
  ["Ch.013: Shogo Kawada","c013"],
  ["Ch.014: Nightmare","c014"],
  ["Ch.015: Conditions","c015"],
  ["Ch.016: The Right Thing To Do","c016"],
  ["Ch.017: Past","c017"],
  ["Ch.018: Odds","c018"],
  ["Ch.019: Problem Child","c019"],
  ["Ch.020: Acceptance","c020"],
  ["Ch.021: Forfeiture","c021"],
  ["Ch.022: Battle Plan","c022"],
  ["Ch.023: The Ultimate Team","c023"],
  ["Ch.024: Takako Chigusa","c024"],
  ["Ch.025: Honor","c025"],
  ["Ch.026: Bond","c026"],
  ["Ch.027: Respect and Affection","c027"],
  ["Ch.028: Insanity","c028"],
  ["Ch.029: The Right Answer","c029"],
  ["Ch.030: Persuasion","c030"],
  ["Ch.031: Everybody's Thoughts","c031"],
  ["Ch.032: Secret Weapon","c032"],
  ["Ch.033: Rouse","c033"],
  ["Ch.034: Last Man Standing","c034"],
  ["Ch.035: Trap","c035"],
  ["Ch.036: Thrist","c036"],
  ["Ch.037: Existence","c037"],
  ["Ch.038: Set Up","c038"],
  ["Ch.039: Anxiety","c039"],
  ["Ch.040: Sworn Friend","c040"],
  ["Ch.041: Flower of Courage","c041"],
  ["Ch.042: Parting","c042"],
  ["Ch.043: Raid","c043"],
  ["Ch.044: Hard Change","c044"],
  ["Ch.045: Rescue","c045"],
  ["Ch.046: Encounter","c046"],
  ["Ch.047: Departure","c047"],
  ["Ch.048: Bug","c048"],
  ["Ch.049: Firing","c049"],
  ["Ch.050: Demolition","c050"],
  ["Ch.051: Team","c051"],
  ["Ch.052: Versus","c052"],
  ["Ch.053: Explosion","c053"],
  ["Ch.054: Bond","c054"],
  ["Ch.055: Trajectory","c055"],
  ["Ch.056: Sixth Sense","c056"],
  ["Ch.057: Unfortunate","c057"],
  ["Ch.058: Liars","c058"],
  ["Ch.059: Soap Opera","c059"],
  ["Ch.060: Allure","c060"],
  ["Ch.061: Sorceress and Bullet","c061"],
  ["Ch.062: Split Personalities","c062"],
  ["Ch.063: Traumatic Games","c063"],
  ["Ch.064: The Well","c064"],
  ["Ch.065: Toshinori Oda","c065"],
  ["Ch.066: Surviving","c066"],
  ["Ch.067: From Afar","c067"],
  ["Ch.068: Confession","c068"],
  ["Ch.069: Doubt","c069"],
  ["Ch.070: Crevice","c070"],
  ["Ch.071: Collapse","c071"],
  ["Ch.072: Yuko Sakaki","c072"],
  ["Ch.073: Wish","c073"],
  ["Ch.074: Reparation","c074"],
  ["Ch.075: Funeral","c075"],
  ["Ch.076: Rain","c076"],
  ["Ch.077: Bleak Reunion","c077"],
  ["Ch.078: Message","c078"],
  ["Ch.079: Faith","c079"],
  ["Ch.080: Encounter","c080"],
  ["Ch.081: Tidings of Happiness","c081"],
  ["Ch.082: Limits","c082"],
  ["Ch.083: The Devil's Tactics","c083"],
  ["Ch.084: Truth and Untruth","c084"],
  ["Ch.085: Proposal","c085"],
  ["Ch.086: Violent Fist","c086"],
  ["Ch.087: Devil of Nothingness","c087"],
  ["Ch.088: Despair","c088"],
  ["Ch.089: Awakening","c089"],
  ["Ch.090: Transcendental","c090"],
  ["Ch.091: Copy","c091"],
  ["Ch.092: Inversion","c092"],
  ["Ch.093: Promise","c093"],
  ["Ch.094: Incubation","c094"],
  ["Ch.095: Reason","c095"],
  ["Ch.096: Closed Off Future","c096"],
  ["Ch.097: Natural Born Killers","c097"],
  ["Ch.098: Magic","c098"],
  ["Ch.099: When The Gun Points","c099"],
  ["Ch.100: The Identity of the Heart","c100"],
  ["Ch.101: Rejection","c101"],
  ["Ch.102: Going Home","c102"],
  ["Ch.103: The Thinking Heart","c103"],
  ["Ch.104: The Right Path","c104"],
  ["Ch.105: The Final Battle","c105"],
  ["Ch.106: Death Race","c106"],
  ["Ch.107: The Pursuit","c107"],
  ["Ch.108: Magician","c108"],
  ["Ch.109: Hit","c109"],
  ["Ch.110: God's Child","c110"],
  ["Ch.111: Wishes","c111"],
  ["Ch.112: Cause and Effect","c112"],
  ["Ch.113: Destiny","c113"],
  ["Ch.114: Determination","c114"],
  ["Ch.115: One's Last Moment","c115"],
  ["Ch.116: Deception","c116"],
  ["Ch.117: Inference","c117"],
  ["Ch.118: Counterattack","c118"],
  ["Ch.119: Hope","c119"]
);

var total_chapters = 119;

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;
