var chapter_list = new Array(
  ["Vol.01 Ch.001: Which side will you choose?","v01/c001"],
  ["Vol.01 Ch.002: Aren't we friends?","v01/c002"],
  ["Vol.01 Ch.003: I Will Protect You","v01/c003"],
  ["Vol.02 Ch.004: If It's Still a Man...","v02/c004"],
  ["Vol.02 Ch.005: Embarkment","v02/c005"],
  ["Vol.02 Ch.006: Here, forever...","v02/c006"],
  ["Vol.02 Ch.007: For What?","v02/c007"],
  ["Vol.03 Ch.008: The Obstacle","v03/c008"],
  ["Vol.03 Ch.009: Tell Me!","v03/c009"],
  ["Vol.03 Ch.010: What Do You See?","v03/c010"],
  ["Vol.03 Ch.011: Too Late","v03/c011"],
  ["Vol.04 Ch.012: The Obvious Thing","v04/c012"],
  ["Vol.04 Ch.013: Friends, You Say?","v04/c013"],
  ["Vol.04 Ch.014: How Can It...","v04/c014"],
  ["Vol.04 Ch.015: An Awkward Child","v04/c015"],
  ["Vol.05 Ch.016: There Is Not Difference","v05/c016"],
  ["Vol.05 Ch.017: In Human Hearts...","v05/c017"],
  ["Vol.05 Ch.018: I Resemble Someone?","v05/c018"],
  ["Vol.05 Ch.019: That Time, I -","v05/c019"],
  ["Vol.06 Ch.020: Now, Only That....","v06/c020"],
  ["Vol.06 Ch.021: If It Isn`t?","v06/c021"],
  ["Vol.06 Ch.022: It Has Changed","v06/c022"],
  ["Vol.06 Ch.023: Wait a Minute!","v06/c023"],
  ["Vol.07 Ch.024: Tomorrow....","v07/c024"],
  ["Vol.07 Ch.025: Sister","v07/c025"],
  ["Vol.07 Ch.026: Let`s Go Back!","v07/c026"],
  ["Vol.07 Ch.027: No Significance","v07/c027"],
  ["Vol.08 Ch.028: I'll Kill You!","v08/c028"],
  ["Vol.08 Ch.029: Because of You...","v08/c029"],
  ["Vol.08 Ch.030: What?","v08/c030"],
  ["Vol.08 Ch.031: I Missed You (There Is Something Curiously Boring About Somebody Else`s Happiness)","v08/c031"],
  ["Vol.09 Ch.032: Hope Is the Denial of Reality","v09/c032"],
  ["Vol.09 Ch.033: It`s About Life","v09/c033"],
  ["Vol.09 Ch.034: What Can I Do?","v09/c034"],
  ["Vol.09 Ch.035: Thank You - Happy Birthday!","v09/c035"],
  ["Vol.10 Ch.035.5: Intermission","v10/c035.5"],
  ["Vol.10 Ch.036: Still Alive - While There's Life, There's Hope","v10/c036"],
  ["Vol.10 Ch.037: I Know","v10/c037"],
  ["Vol.10 Ch.038: You Want to Meet?","v10/c038"],
  ["Vol.11 Ch.039: Man Is the Only Creature That Refuses to Be What He Is","v11/c039"],
  ["Vol.11 Ch.040: Memory","v11/c040"],
  ["Vol.11 Ch.041: Don't Want to Be Alone","v11/c041"],
  ["Vol.11 Ch.042: Who Else Is There?","v11/c042"],
  ["Vol.12 Ch.043: Live as If You Were to Die Tomorrow","v12/c043"],
  ["Vol.12 Ch.044: Resonance","v12/c044"],
  ["Vol.12 Ch.045: It's Not Over Yet","v12/c045"],
  ["Vol.12 Ch.046: What About Me?","v12/c046"],
  ["Vol.13 Ch.047: Now That I See It","v13/c047"],
  ["Vol.13 Ch.048: That's Why","v13/c048"],
  ["Vol.13 Ch.049: As Expected, He's Lonely","v13/c049"],
  ["Vol.13 Ch.050: The Beginning and the End","v13/c050"],
  ["Vol.14 Ch.051: In the Middle of the Stage","v14/c051"],
  ["Vol.14 Ch.052: Apologies","v14/c052"],
  ["Vol.14 Ch.053: A Reason that Cannot Be Spoken","v14/c053"],
  ["Vol.14 Ch.054: Answer Me","v14/c054"],
  ["Vol.15 Ch.055: The Darkness of the Soul","v15/c055"],
  ["Vol.15 Ch.056: I'll Cry","v15/c056"],
  ["Vol.15 Ch.057: One Man","v15/c057"],
  ["Vol.15 Ch.058: Please!","v15/c058"],
  ["Vol.16 Ch.059: Mama's Words","v16/c059"],
  ["Vol.16 Ch.060: With Everything on the Line","v16/c060"],
  ["Vol.16 Ch.061: Is It Necessary?","v16/c061"],
  ["Vol.16 Ch.062: Because I Can't Keep on Living This Way","v16/c062"],
  ["Vol.17 Ch.063: The Endpoint","v17/c063"],
  ["Vol.17 Ch.064: If...","v17/c064"],
  ["Vol.17 Ch.065: Mom","v17/c065"],
  ["Vol.17 Ch.066: Like a Family","v17/c066"],
  ["Vol.18 Ch.067: Not Anymore...","v18/c067"],
  ["Vol.18 Ch.068: Still Fighting","v18/c068"],
  ["Vol.18 Ch.069: And Then, at That Time","v18/c069"],
  ["Vol.18 Ch.070: What Is Wanted","v18/c070"],
  ["Vol.19 Ch.071: What Should Be Done","v19/c071"],
  ["Vol.19 Ch.072: The Whole World Is About Three Drinks Behind","v19/c072"],
  ["Vol.19 Ch.073: This Road, the Way Home","v19/c073"],
  ["Vol.19 Ch.074: Here","v19/c074"],
  ["Vol.20 Ch.075: Marionette","v20/c075"],
  ["Vol.20 Ch.076: Understand?","v20/c076"],
  ["Vol.20 Ch.077","v20/c077"],
  ["Vol.20 Ch.078: I Want To Win","v20/c078"],
  ["Vol.21 Ch.079: Wish","v21/c079"],
  ["Vol.21 Ch.080: Views of the World","v21/c080"],
  ["Vol.21 Ch.081: The Planet Will Become One","v21/c081"],
  ["Vol.21 Ch.082: Final Chapter: Hope Everyone's Doing Well","v21/c082"]
);

var total_chapters = 83;

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;

