var chapter_list = new Array(
  ["Vol.01 Ch.001: Who Is the Girl I Met Amongst the Falling Cherry Blossoms?","v01/c001"],
  ["Vol.01 Ch.001.5: Prunus Girl Special : 2009.04","v01/c001.5"],
  ["Vol.01 Ch.002: Uh Oh! Just Guys at the Beach?","v01/c002"],
  ["Vol.01 Ch.003: Maki's Meager Resistance?","v01/c003"],
  ["Vol.01 Ch.004: Club Recruitment Interception War?","v01/c004"],
  ["Vol.01 Ch.005: The Problems of a Maiden","v01/c005"],
  ["Vol.01 Ch.005.5: Prunus Girl Special : 2009.08","v01/c005.5"],
  ["Vol.01 Ch.006: Maki-kun's Cooking Class?","v01/c006"],
  ["Vol.01 Ch.007: Getting Closer! Summer Festival Date?","v01/c007"],
  ["Vol.01 Ch.008: Deja Vu Transfer Student?","v01/c008"],
  ["Vol.01 Ch.009: Does It Really Exist? The School's Strange Events?","v01/c009"],
  ["Vol.01 Ch.010: This Is Our School's Ghost Story? (Part 2)","v01/c010"],
  ["Vol.01 Ch.011: Young Maidens' Love*Stories","v01/c011"],
  ["Vol.01 Ch.011.5: Just Where Are You Looking?","v01/c011.5"],
  ["Vol.02 Ch.012: The Miniature Garden of War (part 1)","v02/c012"],
  ["Vol.02 Ch.013: The Summer Box Garden War? (Conclusion)","v02/c013"],
  ["Vol.02 Ch.014: Pleasant Friends of Class A?","v02/c014"],
  ["Vol.02 Ch.015: Ideal Disguise Couple (first half)","v02/c015"],
  ["Vol.03 Ch.014: The Cheerful Students of Class A","v03/c014"],
  ["Vol.03 Ch.015: The Flawless Fake Couple (Part One)","v03/c015"],
  ["Vol.03 Ch.016: The Flawless Fake Couple (Part Two)","v03/c016"],
  ["Vol.03 Ch.016.5: Special Side Story: The Sasakino Siblings","v03/c016.5"],
  ["Vol.03 Ch.017: A Normal Day as a Male Student?","v03/c017"],
  ["Vol.03 Ch.018: The Straightforward and Cool-tempered Class President?","v03/c018"],
  ["Vol.04 Ch.019: A Major Incident!!","v04/c019"],
  ["Vol.04 Ch.020: An Unfamiliar Cat ?","v04/c020"],
  ["Vol.04 Ch.021: Is It Just a Fluke?","v04/c021"],
  ["Vol.04 Ch.022: Why Is She Claiming to Be Her Girlfriend (Part One)","v04/c022"],
  ["Vol.04 Ch.023: Why Is She Claiming To Be Her Girlfriend? (Part Two)","v04/c023"],
  ["Vol.04 Ch.024: Why Is She Claiming To Be Her Girlfriend?(Final)","v04/c024"],
  ["Vol.04 Ch.025: The Maiden's Broken Heart","v04/c025"],
  ["Vol.05 Ch.026: Maki and Aikawa's Relatively Normal Daily Life?","v05/c026"],
  ["Vol.05 Ch.027","v05/c027"],
  ["Vol.05 Ch.028","v05/c028"],
  ["Vol.05 Ch.029: A Heated Chase! The Festival Wedding Run? (Part I)","v05/c029"]
);

var total_chapters = 35;

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;

