var chapter_list = new Array(
  ["Vol.00 Ch.000: Oneshot: Koishite?! Kami-sama!! (Make Love?! GOD!!)","v00/c000"],
  ["Vol.01 Ch.001: The World Is Moving Because of Love","v01/c001"],
  ["Vol.01 Ch.002: I'm Your Little Sister Even if I'm a Demon","v01/c002"],
  ["Vol.01 Ch.003: Baby You Are a Rich Girl","v01/c003"],
  ["Vol.01 Ch.004: Drive My Car","v01/c004"],
  ["Vol.01 Ch.005: The Party Should Just Be Left Like That","v01/c005"],
  ["Vol.01 Ch.006: More Than a God, Less Than a Human","v01/c006"],
  ["Vol.01 Ch.007: Idol Bomb!!","v01/c007"],
  ["Vol.01 Ch.008: Up to Boy","v01/c008"],
  ["Vol.01 Ch.009: I'm a Commoner?","v01/c009"],
  ["Vol.01 Ch.010: Single Star","v01/c010"],
  ["Vol.02 Ch.011: Elsee is Soo Sweet","v02/c011"],
  ["Vol.02 Ch.012: Coupling/With","v02/c012"],
  ["Vol.02 Ch.013: The Inside And The Outside of a Big Wall","v02/c013"],
  ["Vol.02 Ch.014: Inside of Me","v02/c014"],
  ["Vol.02 Ch.015: Open the Door.","v02/c015"],
  ["Vol.02 Ch.016: The Last Day","v02/c016"],
  ["Vol.02 Ch.017: A Drawing That Must Happen","v02/c017"],
  ["Vol.02 Ch.018: Overflowing Household","v02/c018"],
  ["Vol.02 Ch.019: Within A Divided Heart","v02/c019"],
  ["Vol.02 Ch.020: A Victory and a Crushing Defeat","v02/c020"],
  ["Vol.02 Ch.021: Settled with One Glance","v02/c021"],
  ["Vol.03 Ch.022: The District Chief Comes!","v03/c022"],
  ["Vol.03 Ch.023: To Threaten the District Chief","v03/c023"],
  ["Vol.03 Ch.024: District Chief, Narration of Hell","v03/c024"],
  ["Vol.03 Ch.025: District Chief, To Borrow Something","v03/c025"],
  ["Vol.03 Ch.026: District Chief, Regain Your Pride","v03/c026"],
  ["Vol.03 Ch.027: Tea for Three","v03/c027"],
  ["Vol.03 Ch.028: Rainy Days and Mondays","v03/c028"],
  ["Vol.03 Ch.029: If you find your way, it always rains","v03/c029"],
  ["Vol.03 Ch.030: If the Rain Stopped","v03/c030"],
  ["Vol.03 Ch.031: 10% Expected Rain Fall","v03/c031"],
  ["Vol.03 Ch.032: Singing in the Rain","v03/c032"],
  ["Vol.03 Ch.033: Kami-Sama´s Dynamic Shopping","v03/c033"],
  ["Vol.03 Ch.034: Demolish the Bricks","v03/c034"],
  ["Vol.03 Ch.035: The Dawn of Something","v03/c035"],
  ["Vol.03 Ch.036: 24-bit Eyes","v03/c036"],
  ["Vol.03 Ch.037: Nagase Sensei of 2nd year Class B","v03/c037"],
  ["Vol.03 Ch.038: School ☆ Wars","v03/c038"],
  ["Vol.03 Ch.039: Eager Times","v03/c039"],
  ["Vol.04 Ch.040: Scrapped Teacher","v04/c040"],
  ["Vol.04 Ch.041: In The Heart, The Sun Will Always...","v04/c041"],
  ["Vol.04 Ch.042: A Demon That's Tiny = The Little Devil!","v04/c042"],
  ["Vol.04 Ch.043: Moon Child","v04/c043"],
  ["Vol.04 Ch.044: The Half-Moon Is The Color Of Love","v04/c044"],
  ["Vol.04 Ch.045: The Moon And A Glove","v04/c045"],
  ["Vol.04 Ch.046: Mister MoonLight","v04/c046"],
  ["Vol.04 Ch.047: The Girl's &quot;Her&quot;","v04/c047"],
  ["Vol.04 Ch.048: Kano-Kano*","v04/c048"],
  ["Vol.04 Ch.049: Kano X Kano X Kare","v04/c049"],
  ["Vol.04 Ch.050: H2O","v04/c050"],
  ["Vol.04 Ch.051: Touch","v04/c051"],
  ["Vol.04 Ch.052: Slow Step","v04/c052"],
  ["Vol.04 Ch.053: Mostly Sunny","v04/c053"],
  ["Vol.04 Ch.054: Four Girls And An Idol","v04/c054"],
  ["Vol.04 Ch.055: Help!","v04/c055"],
  ["Vol.04 Ch.056: Re &quot;Clean&quot; ion","v04/c056"],
  ["Vol.04 Ch.057: Rendezvous","v04/c057"],
  ["Vol.04 Ch.058: Metamorphosis","v04/c058"],
  ["Vol.04 Ch.059: The Danger","v04/c059"],
  ["Vol.04 Ch.060: The Result Of Karma","v04/c060"],
  ["Vol.04 Ch.061: The Two Of Us","v04/c061"],
  ["Vol.04 Ch.062: A Coincidental Meeting","v04/c062"],
  ["Vol.04 Ch.063: Coincidental Meeting II","v04/c063"],
  ["Vol.04 Ch.064: Turnabout","v04/c064"],
  ["Vol.04 Ch.065: Girls Next Door","v04/c065"],
  ["Vol.04 Ch.066: Nights in White Satin","v04/c066"],
  ["Vol.04 Ch.067: Ride My See-Saw","v04/c067"],
  ["Vol.04 Ch.068: Every Good Girl Deserves Favour","v04/c068"],
  ["Vol.04 Ch.069: Chashu of Uneasiness","v04/c069"]
);

var total_chapters = 70;

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;
