var chapter_list = new Array(
  ["Vol.01 Ch.001: Spider's Nest ~ Minekura Kazuya","v01/c001"],
  ["Vol.01 Ch.003: Holly Green and White Little Garden","v01/c003"],
  ["Vol.01 Ch.006: Elevenses","v01/c006"],
  ["Vol.01 Ch.008: Le Droit D' Aimer by Haibara Yaku","v01/c008"],
  ["Vol.01 Ch.011: The Moon and the Visitor ~ Nanjou Tsugumi","v01/c011"],
  ["Vol.02 Ch.001: CANDY","v02/c001"],
  ["Vol.02 Ch.003: FLIES","v02/c003"],
  ["Vol.02 Ch.007: Sky High Tension","v02/c007"],
  ["Vol.02 Ch.014: Moonlight Dance","v02/c014"],
  ["Vol.03 Ch.001: Prince of Stars by Minekura Kazuya","v03/c001"],
  ["Vol.03 Ch.007: Kojiki Hime","v03/c007"],
  ["Vol.04 Ch.001: Sleeping Vampire","v04/c001"],
  ["Vol.04 Ch.002: Mushroom and Kappa","v04/c002"],
  ["Vol.04 Ch.003: To Cross the River ~ Kouga Yun","v04/c003"],
  ["Vol.04 Ch.004: A Shower in the Sunshine","v04/c004"],
  ["Vol.04 Ch.008: The Aegis of Time's Coffin - Yugyoji Tama","v04/c008"],
  ["Vol.04 Ch.009: Forest of Nobility","v04/c009"],
  ["Vol.04 Ch.010: CHIYOSAMA! by Shindo Arashi","v04/c010"],
  ["Vol.04 Ch.012: The truth of Catharsis ~ Inui Miku","v04/c012"],
  ["Vol.04 Ch.015: A Gentle Temperature","v04/c015"],
  ["Vol.05 Ch.001: Last Night's Rain Lifts","v05/c001"],
  ["Vol.05 Ch.012: The Queen's Dog - Araishi &amp; Hoshino","v05/c012"],
  ["Vol.05 Ch.013: Kakure Oni","v05/c013"],
  ["Vol.05 Ch.015: Miokuribana","v05/c015"],
  ["Vol.06 Ch.002: Monach Sacred","v06/c002"],
  ["Vol.06 Ch.007: Frightening Eccentric","v06/c007"],
  ["Vol.06 Ch.015: Twins Pocky - Serikawa Mame","v06/c015"],
  ["Vol.06 Ch.016: Pledge of the Ox ~ Kayase Shiki","v06/c016"],
  ["Vol.07 Ch.002: Night bird","v07/c002"],
  ["Vol.07 Ch.004: Good Day for Me by Omote Sora","v07/c004"],
  ["Vol.07 Ch.005: Love Coloured Glasses~Bikke","v07/c005"],
  ["Vol.07 Ch.006: The Kind Black Witch â€“ Ueda Shinshuu","v07/c006"],
  ["Vol.07 Ch.008: Kokonoe Kyuujustsu","v07/c008"],
  ["Vol.07 Ch.011: Kashoku â€“ Kayase Shiki","v07/c011"],
  ["Vol.07 Ch.014: The Kind Magician and the Paper Bag Girl ~ Mizutani &amp; Kaede","v07/c014"],
  ["Vol.08 Ch.005: Butler 2: Le Droit d'Aimer","v08/c005"],
  ["Vol.09 Ch.001: The Wolf and the 7 Baby Goats","v09/c001"],
  ["Vol.09 Ch.007: Little Heart","v09/c007"],
  ["Vol.09 Ch.008: A Nameless Quality","v09/c008"],
  ["Vol.09 Ch.012: Super Human Console","v09/c012"],
  ["Vol.09 Ch.013: Private Solar System Academy","v09/c013"],
  ["Vol.09 Ch.014: My Blue Bicycle - Zekkyou","v09/c014"],
  ["Vol.09 Ch.015: Tique-Tique","v09/c015"],
  ["Vol.09 Ch.016: The Crow and the Pomegranate - Yoshizawa Tomoya","v09/c016"],
  ["Vol.10 Ch.011: A promise","v10/c011"],
  ["Vol.11 Ch.002: The Classroom Where He Is","v11/c002"],
  ["Vol.11 Ch.011: If Time... ~ Buchi Keiko","v11/c011"],
  ["Vol.12 Ch.001: Demonâ€™s Kiss ~ Inui Miku","v12/c001"],
  ["Vol.12 Ch.006: The Swings on Wednesday","v12/c006"],
  ["Vol.13 Ch.013: Devil's Bride ~ Mr. Megane","v13/c013"],
  ["Vol.16 Ch.005: The Snake King","v16/c005"],
  ["Vol.16 Ch.014: The Centennial Brier and the Oblivious Princess","v16/c014"],
  ["Vol.16 Ch.022","v16/c022"]
);

var total_chapters = 53;

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;

