var chapter_list = new Array(
  ["Vol.01 Ch.001: Chapter 1 ~ Atsushi's Day of Pain","v01/c001"],
  ["Vol.01 Ch.002: Chapter 2 ~ Dazzling In A Casual Manner","v01/c002"],
  ["Vol.01 Ch.003: Chapter 3 ~ The Equation of A First Love","v01/c003"],
  ["Vol.01 Ch.004: Chapter 4 ~ Just One Word Only","v01/c004"],
  ["Vol.02 Ch.005: Chapter 5` love Call Ikki (In One Shot)","v02/c005"],
  ["Vol.02 Ch.006: Chapter 6 ~ Battle Vacation","v02/c006"],
  ["Vol.02 Ch.007: Chapter 7 ~ Temptation's Sweet Trap!?","v02/c007"],
  ["Vol.02 Ch.008: Chapter 8 ~ Secret Couple","v02/c008"],
  ["Vol.02 Ch.009: Chapter 9 ~ Christmas Special","v02/c009"],
  ["Vol.02 Ch.009.1: Extra ~ Keep Fighting Inagaki-kun","v02/c009.1"],
  ["Vol.03 Ch.010: Chapter 10 ~ Diary From A Nice Trip To Oslo","v03/c010"],
  ["Vol.03 Ch.010.1: Extra ~ A","v03/c010.1"],
  ["Vol.03 Ch.010.2: Extra ~ B","v03/c010.2"],
  ["Vol.03 Ch.011: Chapter 11 ~ Pure Heart's Meeting","v03/c011"],
  ["Vol.03 Ch.012: Chapter 12 ~ Please Let Me Call You Father","v03/c012"],
  ["Vol.04 Ch.013: Chapter 13 ~ Than You - sankyu","v04/c013"],
  ["Vol.04 Ch.014: Chapter 14 ~ Older Brother's Lover","v04/c014"],
  ["Vol.04 Ch.015: Chapter 15 ~ Interference In Pajamas","v04/c015"],
  ["Vol.04 Ch.016","v04/c016"],
  ["Vol.04 Ch.016.1: The Day We Didn't Become Lovers","v04/c016.1"],
  ["Vol.05 Ch.017: Chapter 17 ~ Long For Love","v05/c017"],
  ["Vol.05 Ch.018: Chapter 18 ~ A Step Off The Cliff","v05/c018"],
  ["Vol.05 Ch.019: Chapter 19 ~ The Trap of Dangerous Love","v05/c019"],
  ["Vol.05 Ch.019.2: Kusatta dj - Mix10 (Happy Dream!?)","v05/c019.2"],
  ["Vol.05 Ch.020: Chapter 20 ~ Slave of Love","v05/c020"],
  ["Vol.05 Ch.021: Chapter 21 ~ Things Implied By Love","v05/c021"],
  ["Vol.06 Ch.022: Chapter 22 ~ Fight After The Rain","v06/c022"],
  ["Vol.06 Ch.023: Chapter 23 ~ The Boys Are Worried","v06/c023"],
  ["Vol.06 Ch.024: Chapter 24 ~ It's Not Like That!","v06/c024"],
  ["Vol.06 Ch.025: Chapter 25 ~ Pretty Woman","v06/c025"],
  ["Vol.06 Ch.026: Chapter 26 ~ The Truth And The Reason","v06/c026"],
  ["Vol.07 Ch.027: Chapter 27 ~ Ways of Kissing","v07/c027"],
  ["Vol.07 Ch.028: Chapter 28 ~ Good Boy's Advice","v07/c028"],
  ["Vol.07 Ch.029: Chapter 29 ~ One Should Be Strong","v07/c029"],
  ["Vol.07 Ch.030: Chapter 30 ~ Story of The Second Button","v07/c030"],
  ["Vol.07 Ch.031: Chapter 31 ~ My Teddy Bear","v07/c031"],
  ["Vol.07 Ch.032: Chapter 32 ~ Love Love Love","v07/c032"],
  ["Vol.08 Ch.033: Chapter 33 ~ Love Is Tiresome!?","v08/c033"],
  ["Vol.08 Ch.034: Chapter 34 ~ Who Is To Blame?","v08/c034"],
  ["Vol.08 Ch.035: Chapter 35 ~ Old Girlfriend's Shadow","v08/c035"],
  ["Vol.08 Ch.036: Chapter 36 ~ The Spare Key's Way","v08/c036"],
  ["Vol.08 Ch.037: Chapter 37 ~ You Are My Precious","v08/c037"],
  ["Vol.09 Ch.038: Chapter 38 ~ Trouble Travel","v09/c038"],
  ["Vol.09 Ch.039: Chapter 39 ~ More Than Just Friends, But Not Lovers","v09/c039"],
  ["Vol.09 Ch.040: Chapter 40 ~ A Sleepless Night","v09/c040"],
  ["Vol.09 Ch.041: Chapter 41 ~ Sensei's Resolution","v09/c041"],
  ["Vol.09 Ch.042: Chapter 42 ~ Crossroads","v09/c042"],
  ["Vol.09 Ch.042.1: Extra ! Extraordinary Life In The Color of Rose","v09/c042.1"],
  ["Vol.10 Ch.043: Chapter 43 ~ Spring, Come","v10/c043"],
  ["Vol.10 Ch.044: Chapter 44 ~ Whenever","v10/c044"],
  ["Vol.10 Ch.045: Chapter 45 ~ Don't Say Goodbye","v10/c045"],
  ["Vol.10 Ch.046: Chapter 46 ~ I Love You","v10/c046"],
  ["Vol.10 Ch.047: Chapter 47 ~ Always By Your Side","v10/c047"],
  ["Vol.10 Ch.047.1: Extra ~ An Extraordinarily Troubling Situation For Shibata Massayoshi","v10/c047.1"],
  ["Vol.10 Ch.047.2: DJ ~ Encore","v10/c047.2"]
);

var total_chapters = 55;

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;

