var chapter_list = new Array(
  ["Ch.001: Welcome to the Host Club!","c001"],
  ["Ch.002","c002"],
  ["Ch.003: Invasion of the Female Manager","c003"],
  ["Ch.003.5: Honey-senpai's Usa-chan","c003.5"],
  ["Ch.004","c004"],
  ["Ch.005: The Dispute of the Twins","c005"],
  ["Ch.006","c006"],
  ["Ch.007","c007"],
  ["Ch.007.5","c007.5"],
  ["Ch.008","c008"],
  ["Ch.009","c009"],
  ["Ch.010","c010"],
  ["Ch.011","c011"],
  ["Ch.012","c012"],
  ["Ch.012.5","c012.5"],
  ["Ch.013","c013"],
  ["Ch.014: love egoist","c014"],
  ["Ch.015: Alice in Wonderland Parody","c015"],
  ["Ch.016","c016"],
  ["Ch.016.5: Suspense Theater","c016.5"],
  ["Ch.017","c017"],
  ["Ch.018","c018"],
  ["Ch.019","c019"],
  ["Ch.020","c020"],
  ["Ch.021","c021"],
  ["Ch.021.5","c021.5"],
  ["Ch.022","c022"],
  ["Ch.023","c023"],
  ["Ch.024","c024"],
  ["Ch.025","c025"],
  ["Ch.026","c026"],
  ["Ch.027","c027"],
  ["Ch.028","c028"],
  ["Ch.029","c029"],
  ["Ch.030","c030"],
  ["Ch.031","c031"],
  ["Ch.031.5: Bonus: The Past of the Hitachiin Twins","c031.5"],
  ["Ch.032","c032"],
  ["Ch.033","c033"],
  ["Ch.034","c034"],
  ["Ch.035","c035"],
  ["Ch.035.5","c035.5"],
  ["Ch.036","c036"],
  ["Ch.037","c037"],
  ["Ch.038","c038"],
  ["Ch.039","c039"],
  ["Ch.040","c040"],
  ["Ch.041","c041"],
  ["Ch.042","c042"],
  ["Ch.043","c043"],
  ["Ch.044","c044"],
  ["Ch.045","c045"],
  ["Ch.046","c046"],
  ["Ch.046.2: Extra","c046.2"],
  ["Ch.047","c047"],
  ["Ch.048","c048"],
  ["Ch.049","c049"],
  ["Ch.050","c050"],
  ["Ch.051","c051"],
  ["Ch.052: Kaoru's Confession to Haruhi !!!","c052"],
  ["Ch.053: Reunited Love","c053"],
  ["Ch.054","c054"],
  ["Ch.055","c055"],
  ["Ch.056: With a smile on her face...","c056"],
  ["Ch.057","c057"],
  ["Ch.057.5: July Special","c057.5"],
  ["Ch.058","c058"],
  ["Ch.059","c059"],
  ["Ch.060","c060"],
  ["Ch.061.1","c061.1"],
  ["Ch.061.2","c061.2"],
  ["Ch.061.4: Omake - The First Day","c061.4"],
  ["Ch.061.5: Mori Omake Chapter","c061.5"],
  ["Ch.062","c062"],
  ["Ch.063","c063"],
  ["Ch.064: Do you realize?","c064"],
  ["Ch.065: Haruhi gets jealous!","c065"],
  ["Ch.066: Restless Heart","c066"],
  ["Ch.067","c067"],
  ["Ch.068","c068"],
  ["Ch.069","c069"],
  ["Ch.070","c070"],
  ["Ch.070.5","c070.5"],
  ["Ch.070.6: Omake - Kanazuki-chan's Grand Strategy to get a Date","c070.6"],
  ["Ch.071","c071"],
  ["Ch.072: Unexpected happenings","c072"],
  ["Ch.073","c073"],
  ["Ch.074: The rescue of the kidnapped prince!","c074"],
  ["Ch.075: The Big Turning Point!!","c075"]
);

var total_chapters = 89;

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;
