var chapter_list = new Array(
  ["Vol.01 Ch.001: I Want You To Be &quot;Love Lucky&quot;","v01/c001"],
  ["Vol.01 Ch.002: Don't Make This A Dream ...","v01/c002"],
  ["Vol.01 Ch.003: Goddess of Luck","v01/c003"],
  ["Vol.01 Ch.004: Within Reach ...","v01/c004"],
  ["Vol.01 Ch.005: It's Okay, Right?!","v01/c005"],
  ["Vol.01 Ch.006: Celebration: The First Night","v01/c006"],
  ["Vol.01 Ch.007: With You As You Are Now ...","v01/c007"],
  ["Vol.01 Ch.008: &quot;Love Lucky&quot; Together","v01/c008"],
  ["Vol.02 Ch.009: We'll Never Divorce!","v02/c009"],
  ["Vol.02 Ch.010: Recognize This Marriage!!","v02/c010"],
  ["Vol.02 Ch.011: Heaven and Earth","v02/c011"],
  ["Vol.02 Ch.012: A Terrible Date","v02/c012"],
  ["Vol.02 Ch.013: There Are Various... Celebrities","v02/c013"],
  ["Vol.02 Ch.014: It's Always Different ...","v02/c014"],
  ["Vol.02 Ch.015: Please Continue Touching","v02/c015"],
  ["Vol.02 Ch.016: I Hate Outsiders!!","v02/c016"],
  ["Vol.02 Ch.017: Ideal Marriage","v02/c017"],
  ["Vol.03 Ch.018: Fuuta's Omiai!?","v03/c018"],
  ["Vol.03 Ch.019: I'm Sorry... Masayo-san.","v03/c019"],
  ["Vol.03 Ch.020: Kirari-chan's Appeal","v03/c020"],
  ["Vol.03 Ch.021: I Have a Fever...","v03/c021"],
  ["Vol.03 Ch.022: Qualifications of a Husband","v03/c022"],
  ["Vol.03 Ch.023: Happy Valentine's Day","v03/c023"],
  ["Vol.03 Ch.024: Honeymoon GO!","v03/c024"],
  ["Vol.03 Ch.025: A Date in Hawaii","v03/c025"],
  ["Vol.03 Ch.026: A Special Person","v03/c026"],
  ["Vol.04 Ch.027","v04/c027"],
  ["Vol.04 Ch.028","v04/c028"],
  ["Vol.04 Ch.029","v04/c029"],
  ["Vol.04 Ch.030","v04/c030"],
  ["Vol.04 Ch.031","v04/c031"],
  ["Vol.04 Ch.032: If I Don't Support Her...","v04/c032"],
  ["Vol.04 Ch.033","v04/c033"],
  ["Vol.04 Ch.034: A Real Kiss","v04/c034"],
  ["Vol.04 Ch.035: I Thought It'd Be Okay","v04/c035"],
  ["Vol.04 Ch.036: A Younger Girl is Better, Right?","v04/c036"],
  ["Vol.05 Ch.037: I Was Really Jealous","v05/c037"],
  ["Vol.05 Ch.038: Fuuta's Hometown","v05/c038"],
  ["Vol.05 Ch.039: Not On A Whim!","v05/c039"],
  ["Vol.05 Ch.040: A Shotgun Wedding!?","v05/c040"],
  ["Vol.05 Ch.041: A Sudden Split Up?","v05/c041"],
  ["Vol.05 Ch.042: I Want To Share... Kirari-san's Luck","v05/c042"],
  ["Vol.05 Ch.043: Because You Are My Husbandâ™¡","v05/c043"],
  ["Vol.05 Ch.044: A Date With Erika-sanâ™«","v05/c044"],
  ["Vol.05 Ch.045: A Happy Feelingâ™¡","v05/c045"],
  ["Vol.06 Ch.046: Mixer And Banquet","v06/c046"],
  ["Vol.06 Ch.047: 100 Paths Of Love","v06/c047"],
  ["Vol.06 Ch.048: Will... You Quit Your Job?","v06/c048"],
  ["Vol.06 Ch.049: The Dream That Never Came True","v06/c049"],
  ["Vol.06 Ch.050: Ryouko's Love &lt;3","v06/c050"],
  ["Vol.06 Ch.051: Kirari's Father","v06/c051"],
  ["Vol.06 Ch.052: Father-in-Law Panic","v06/c052"],
  ["Vol.06 Ch.053: I Will Make her Happy","v06/c053"],
  ["Vol.06 Ch.054: Being Too Careless is Dangerous!","v06/c054"],
  ["Vol.07 Ch.055: Discovered by an Entertainment Reporter!!","v07/c055"],
  ["Vol.07 Ch.056: If We Resist for 2 Months...!!","v07/c056"],
  ["Vol.07 Ch.057: Let Me Think About It","v07/c057"],
  ["Vol.07 Ch.058: The Promised One Year!!","v07/c058"],
  ["Vol.07 Ch.059: At Last,The Marriage Press Conference!!","v07/c059"],
  ["Vol.07 Ch.060: Who is Kirari-chan's Husband!?","v07/c060"],
  ["Vol.07 Ch.061: Fuuta Has A Child!?","v07/c061"],
  ["Vol.07 Ch.062: The Heart-Throbbing Wedding Ceremony","v07/c062"],
  ["Vol.07 Ch.063: Our New Start (END)","v07/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;

