var chapter_list = new Array(
  ["Vol.01 Ch.001: Dreams and Reality","v01/c001"],
  ["Vol.01 Ch.002: The Fool and the Wiseman","v01/c002"],
  ["Vol.01 Ch.003: Pens and Names","v01/c003"],
  ["Vol.01 Ch.004: Parent and Child","v01/c004"],
  ["Vol.01 Ch.005: The Rules of the Mangaka","v01/c005"],
  ["Vol.01 Ch.006: Best and Worst","v01/c006"],
  ["Vol.01 Ch.007: A Smile And A Blush","v01/c007"],
  ["Vol.02 Ch.008: The Carrot And The Stick","v02/c008"],
  ["Vol.02 Ch.009: Conditions And Moving To Tokyo","v02/c009"],
  ["Vol.02 Ch.010: Anxiety And Anticipation","v02/c010"],
  ["Vol.02 Ch.011: Regret and Understanding","v02/c011"],
  ["Vol.02 Ch.012: 10 And 2","v02/c012"],
  ["Vol.02 Ch.013: Chocolate and Akamaru","v02/c013"],
  ["Vol.02 Ch.014: Dinner and Graduation","v02/c014"],
  ["Vol.02 Ch.015: Send and Reply","v02/c015"],
  ["Vol.02 Ch.016: Early results and the real deal","v02/c016"],
  ["Vol.03 Ch.017: Battles And Copying","v03/c017"],
  ["Vol.03 Ch.018: Friends And Rivals","v03/c018"],
  ["Vol.03 Ch.019: Debut and Impatience","v03/c019"],
  ["Vol.03 Ch.020: The Future and the Stairway","v03/c020"],
  ["Vol.03 Ch.021: A Wall and a Kiss","v03/c021"],
  ["Vol.03 Ch.022: Nuisance and Youth","v03/c022"],
  ["Vol.03 Ch.023: Conceit and Kindness","v03/c023"],
  ["Vol.03 Ch.024: Notebooks and Characters","v03/c024"],
  ["Vol.03 Ch.025: Love and Jealousy","v03/c025"],
  ["Vol.04 Ch.026: Two and One","v04/c026"],
  ["Vol.04 Ch.027: The Schemer and the Deceit","v04/c027"],
  ["Vol.04 Ch.028: Cooperation and Conditions","v04/c028"],
  ["Vol.05 Ch.029: Literature and Music","v05/c029"],
  ["Vol.05 Ch.030: Union And Disagreement","v05/c030"],
  ["Vol.05 Ch.031: Tuesday and Friday","v05/c031"],
  ["Vol.05 Ch.032: Phonecall and the Night Before","v05/c032"],
  ["Vol.05 Ch.033: Yes and No","v05/c033"],
  ["Vol.05 Ch.034: The Chaser and the Chased","v05/c034"],
  ["Vol.05 Ch.035: Happiness and Sadness","v05/c035"],
  ["Vol.05 Ch.036: Silence And A Party","v05/c036"],
  ["Vol.05 Ch.037: Board Members And Birds","v05/c037"],
  ["Vol.05 Ch.038: The Window and the Snow","v05/c038"],
  ["Vol.05 Ch.039: Anthologies And Photo Books","v05/c039"],
  ["Vol.05 Ch.040: The Ocean and Up and Downs","v05/c040"],
  ["Vol.05 Ch.041: Fixes and Patience","v05/c041"],
  ["Vol.05 Ch.042: Laughter and Lines","v05/c042"],
  ["Vol.05 Ch.043: Humor And News","v05/c043"],
  ["Vol.05 Ch.044: Returning Favors And Turning Things Inside Out","v05/c044"],
  ["Vol.05 Ch.045: Sickness and Motivation","v05/c045"],
  ["Vol.05 Ch.046: Strong Eyes and Hard Work","v05/c046"],
  ["Vol.05 Ch.047: Contradictions and Reasons","v05/c047"],
  ["Vol.05 Ch.048: Life and Death and Repose","v05/c048"],
  ["Vol.05 Ch.049: Recall And Call","v05/c049"],
  ["Vol.05 Ch.050: Unreasonableness And Guts","v05/c050"],
  ["Vol.05 Ch.051: Resumption and Low Ranks","v05/c051"],
  ["Vol.05 Ch.052: Impressions and Headlong Dashes","v05/c052"],
  ["Vol.05 Ch.053: 18 and 40","v05/c053"],
  ["Vol.05 Ch.054: Gag and serious","v05/c054"],
  ["Vol.05 Ch.055: 3 Illustrations and 3 Stories","v05/c055"],
  ["Vol.05 Ch.056: Adults and Children","v05/c056"],
  ["Vol.05 Ch.057: Division And A Tie","v05/c057"],
  ["Vol.05 Ch.058: Single and Double Digits","v05/c058"],
  ["Vol.05 Ch.059: Experience and Data","v05/c059"],
  ["Vol.05 Ch.060: Men And Women","v05/c060"],
  ["Vol.05 Ch.061: Alliances and Classmates","v05/c061"],
  ["Vol.05 Ch.062: Novel and Letter","v05/c062"],
  ["Vol.05 Ch.063: Doubt and Trust","v05/c063"]
);

var total_chapters = 63;

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;
