var chapter_list = new Array(
  ["Vol.01 Ch.001: When He Became an &quot;Ichinensei&quot;","v01/c001"],
  ["Vol.01 Ch.002: When He Was Physically &quot;Examined&quot;","v01/c002"],
  ["Vol.01 Ch.003: When He Went To &quot;The Toilet&quot;","v01/c003"],
  ["Vol.01 Ch.004: When He Was &quot;Liked&quot; By a Boy","v01/c004"],
  ["Vol.01 Ch.005: When He Changed Into A &quot;Swimsuit&quot;","v01/c005"],
  ["Vol.01 Ch.006: When He Met The &quot;Rokunensei&quot;","v01/c006"],
  ["Vol.01 Ch.007: When His &quot;Little Sister&quot; Almost Found Out","v01/c007"],
  ["Vol.02 Ch.008: When The Woman He Like was &quot;Confessed&quot; to","v02/c008"],
  ["Vol.02 Ch.009: When He &quot;Caught a Cold&quot;","v02/c009"],
  ["Vol.02 Ch.010: When He &quot;Wet&quot; himself","v02/c010"],
  ["Vol.02 Ch.011: When He Chose &quot;Lingerie&quot;","v02/c011"],
  ["Vol.02 Ch.012: When They Were Alone Together After School","v02/c012"],
  ["Vol.02 Ch.013: When Everyone Went To The Ofuro (First Part)","v02/c013"],
  ["Vol.02 Ch.014: When Everyone Went to the Ofuro (Last Part)","v02/c014"],
  ["Vol.03 Ch.015: When He Became a &quot;Koukousei&quot;","v03/c015"],
  ["Vol.03 Ch.016: When He Was &quot;Invited&quot; To A Birthday Party","v03/c016"],
  ["Vol.03 Ch.017: When He Took The &quot;Pinworm Test&quot;","v03/c017"],
  ["Vol.03 Ch.018: When He Became &quot;Popular&quot;","v03/c018"],
  ["Vol.03 Ch.019: When He Met an &quot;Alien&quot; ?","v03/c019"],
  ["Vol.03 Ch.020: When He &quot;Found&quot; The Ero Book","v03/c020"],
  ["Vol.04 Ch.021: When he &quot;Thought&quot; he wasn't A Second Year High School Boy","v04/c021"],
  ["Vol.04 Ch.022: When The &quot;Love Letter&quot; Was Sent","v04/c022"],
  ["Vol.04 Ch.023: When He Stepped Off The &quot;White Line&quot;","v04/c023"],
  ["Vol.04 Ch.024: When He Went To &quot;The Hospital&quot; To Visit","v04/c024"],
  ["Vol.04 Ch.025: When He Was &quot;Locked Up&quot; In The Gym Equipment Shed","v04/c025"],
  ["Vol.04 Ch.026: When He Was With &quot;His Mother&quot;","v04/c026"],
  ["Vol.04 Ch.027: When He Went to a &quot;Sleepover&quot;","v04/c027"],
  ["Vol.05 Ch.027.5: When me went to the &quot;sleepover&quot; (Behind the scenes)","v05/c027.5"],
  ["Vol.05 Ch.028: When He Rode the Train","v05/c028"],
  ["Vol.05 Ch.029: When He Bought Sweets","v05/c029"],
  ["Vol.05 Ch.030: When His Mother Visited","v05/c030"],
  ["Vol.05 Ch.031: When His House Blew Up","v05/c031"],
  ["Vol.05 Ch.032: When He Went To The Sushi Bar","v05/c032"],
  ["Vol.06 Ch.033: When The Card Game Was In Fashion","v06/c033"],
  ["Vol.06 Ch.034: When Santa Claus came","v06/c034"],
  ["Vol.06 Ch.035: When the snow piled up","v06/c035"],
  ["Vol.06 Ch.036: When He Gave Chocolates","v06/c036"],
  ["Vol.06 Ch.037","v06/c037"],
  ["Vol.06 Ch.044","v06/c044"],
  ["Vol.06 Ch.045","v06/c045"]
);

var total_chapters = 40;

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;

