var chapter_list = new Array(
  ["Vol.01 Ch.001: A Mischievous Insurance Agent","v01/c001"],
  ["Vol.01 Ch.002: The Invincible Student Part 1","v01/c002"],
  ["Vol.01 Ch.003: The Invincible Student Part 2","v01/c003"],
  ["Vol.01 Ch.004: The Trap Of The New Secretary","v01/c004"],
  ["Vol.01 Ch.005: Modeling for Scandal","v01/c005"],
  ["Vol.01 Ch.006: The Mysterious Woman","v01/c006"],
  ["Vol.01 Ch.007: Stop that university girl","v01/c007"],
  ["Vol.01 Ch.008: Ai-chan in Tokyo","v01/c008"],
  ["Vol.01 Ch.009: Ai-chan's Syndrome","v01/c009"],
  ["Vol.01 Ch.010: Be Careful with The Packed Trains","v01/c010"],
  ["Vol.02 Ch.011: Let's Get the Criminal!","v02/c011"],
  ["Vol.02 Ch.012: Do You Like Your Beautiful Boss?","v02/c012"],
  ["Vol.02 Ch.013: Be My Baby","v02/c013"],
  ["Vol.02 Ch.014: Kei","v02/c014"],
  ["Vol.02 Ch.015: The Bra-less Girl Attack!","v02/c015"],
  ["Vol.02 Ch.016: Secrets in the Dark","v02/c016"],
  ["Vol.02 Ch.017: Taste Of A Love Hamburger!?","v02/c017"],
  ["Vol.02 Ch.018: The Day Eitaro Gets A Girlfriend","v02/c018"],
  ["Vol.02 Ch.019: The Ultimate Dessert Part 1","v02/c019"],
  ["Vol.02 Ch.019.5: Omake - And Suddenly: Her","v02/c019.5"],
  ["Vol.03 Ch.020: The Ultimate Dessert Part 2","v03/c020"],
  ["Vol.03 Ch.021: Lover From Fukuoka","v03/c021"],
  ["Vol.03 Ch.022: I Will Protect You","v03/c022"],
  ["Vol.03 Ch.023: Boyfriend-Girlfriend's Moment","v03/c023"],
  ["Vol.03 Ch.024: Kimono's Vals","v03/c024"],
  ["Vol.03 Ch.025: Problems With The Kimono","v03/c025"],
  ["Vol.03 Ch.026: Saturday's Decisive Battle","v03/c026"],
  ["Vol.04 Ch.027: The Maiden's Mission","v04/c027"],
  ["Vol.04 Ch.028: Heaven and Hell","v04/c028"],
  ["Vol.04 Ch.029: Deadly Drive","v04/c029"],
  ["Vol.04 Ch.030: Love's Accelerator","v04/c030"],
  ["Vol.04 Ch.031: Trouble At The Year's End","v04/c031"],
  ["Vol.04 Ch.032: You Should Be More Docile","v04/c032"],
  ["Vol.04 Ch.033: Chocolate","v04/c033"],
  ["Vol.05 Ch.034: Maiko's Chance","v05/c034"],
  ["Vol.05 Ch.035: What's Love?","v05/c035"],
  ["Vol.05 Ch.036: How a man and a woman end up?","v05/c036"],
  ["Vol.05 Ch.037: Date Under The Sakura Trees","v05/c037"],
  ["Vol.05 Ch.038: At Last","v05/c038"],
  ["Vol.05 Ch.039: A Tempestuous Party","v05/c039"],
  ["Vol.05 Ch.040: Karaoke's Hot Battle","v05/c040"],
  ["Vol.05 Ch.041: It All Started In A Laundromat","v05/c041"],
  ["Vol.05 Ch.042: Nobody stop the apple","v05/c042"],
  ["Vol.06 Ch.043: Inopportune People","v06/c043"],
  ["Vol.06 Ch.044: You Always Involve Me In Scandals","v06/c044"],
  ["Vol.06 Ch.045: Let's Play In The Pool","v06/c045"],
  ["Vol.06 Ch.046: Forgive Me","v06/c046"],
  ["Vol.06 Ch.047: An Unhappy Wedding","v06/c047"],
  ["Vol.06 Ch.048: And We Will Broadcast It Later","v06/c048"],
  ["Vol.06 Ch.049: Is This Infidelity?","v06/c049"],
  ["Vol.06 Ch.050: True Love","v06/c050"],
  ["Vol.06 Ch.050.5: Omake - Splash Island","v06/c050.5"],
  ["Vol.07 Ch.051: Proof of Love","v07/c051"],
  ["Vol.07 Ch.052: It Doesn't Matter That There Is Love?","v07/c052"],
  ["Vol.07 Ch.053: Long Time No See","v07/c053"],
  ["Vol.07 Ch.054: A woman's heart is complicated","v07/c054"],
  ["Vol.07 Ch.055: I Screwed Up","v07/c055"],
  ["Vol.07 Ch.056: Wash Up!","v07/c056"],
  ["Vol.08 Ch.057: Your True Name","v08/c057"],
  ["Vol.08 Ch.058.8: Eitaro-maniac","v08/c058.8"],
  ["Vol.08 Ch.059: And When I Couldn't Stop Myself From Going Crazy","v08/c059"],
  ["Vol.08 Ch.060: Come and Play with Us","v08/c060"],
  ["Vol.08 Ch.061: Double Danger","v08/c061"]
);

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;

