var chapter_list = new Array(
  ["Vol.01 Ch.000: A New Place, New Friends and New Things...","v01/c000"],
  ["Vol.01 Ch.001","v01/c001"],
  ["Vol.01 Ch.005.5: Recipes Extras","v01/c005.5"],
  ["Vol.02 Ch.000: Chapters 6-10 and Sora's &amp; Daichi's Day","v02/c000"],
  ["Vol.02 Ch.010.5: Recipes Extras","v02/c010.5"],
  ["Vol.03 Ch.000: Chapters 11-15","v03/c000"],
  ["Vol.03 Ch.011: Najika and Polkadot Pancake","v03/c011"],
  ["Vol.03 Ch.012: Najika and Rolled Sandwiches","v03/c012"],
  ["Vol.03 Ch.013: Najika and Banana Creampuffs","v03/c013"],
  ["Vol.03 Ch.014: Najika and the Carrot Cake","v03/c014"],
  ["Vol.03 Ch.015: Najika and Mont Blanc","v03/c015"],
  ["Vol.03 Ch.015.5: Recipes Extras","v03/c015.5"],
  ["Vol.04 Ch.016: Najika and the Omurice","v04/c016"],
  ["Vol.04 Ch.017: Najika and the Apple Cake","v04/c017"],
  ["Vol.04 Ch.018: Najika and the Cocoa Scone","v04/c018"],
  ["Vol.04 Ch.019: Najika and Fruit Agar","v04/c019"],
  ["Vol.05 Ch.020: Najika and the Strawberry Tart","v05/c020"],
  ["Vol.05 Ch.021: Najika and Castella","v05/c021"],
  ["Vol.05 Ch.022: Najika and the Crepes","v05/c022"],
  ["Vol.05 Ch.023: Najika and Souffle Ice Cream","v05/c023"],
  ["Vol.05 Ch.023.1: Extra","v05/c023.1"],
  ["Vol.06 Ch.024: Najika and the Bruschetta","v06/c024"],
  ["Vol.06 Ch.025: Najika and the Flan Cake","v06/c025"],
  ["Vol.06 Ch.026: Najika and The Curry Roll","v06/c026"],
  ["Vol.06 Ch.027: Najika and The Yogurt Bread","v06/c027"],
  ["Vol.06 Ch.028: Najika and the Baked Sweet Potato Mash","v06/c028"],
  ["Vol.06 Ch.028.1: Extra","v06/c028.1"],
  ["Vol.07 Ch.029: Najika and the Fruit Cocktail","v07/c029"],
  ["Vol.07 Ch.030: Najika and the Madeleines","v07/c030"],
  ["Vol.07 Ch.031: Najika and the Neapolitan Spaghetti","v07/c031"],
  ["Vol.07 Ch.032: Najika and the Mille-feulle","v07/c032"],
  ["Vol.07 Ch.033: Najika and the Cheesecake","v07/c033"],
  ["Vol.08 Ch.034: Najika and the Fruit Jam","v08/c034"],
  ["Vol.08 Ch.035: Najika and the Tea Sandwich","v08/c035"],
  ["Vol.08 Ch.036: Najika and the High Tea (Part 1)","v08/c036"],
  ["Vol.08 Ch.037: Najika and High Tea (Part 2)","v08/c037"],
  ["Vol.08 Ch.038: Najika and Baci","v08/c038"],
  ["Vol.08 Ch.039: Najika and the Cinnamon Roll","v08/c039"],
  ["Vol.08 Ch.039.5: Recipes","v08/c039.5"],
  ["Vol.09 Ch.040: Najika and the Hot Chocolate","v09/c040"],
  ["Vol.09 Ch.041: Najika and the Banana Bread","v09/c041"],
  ["Vol.09 Ch.042: Najika And the Chicken Doria","v09/c042"],
  ["Vol.09 Ch.043: Najika and the Vegetable Potage","v09/c043"],
  ["Vol.09 Ch.043.1: Special","v09/c043.1"],
  ["Vol.09 Ch.043.5: Recipes Extra","v09/c043.5"],
  ["Vol.10 Ch.044: Najika and the Salt Caramel","v10/c044"],
  ["Vol.10 Ch.045: Najika and Paella","v10/c045"],
  ["Vol.10 Ch.046: Najika and Cocktail","v10/c046"],
  ["Vol.10 Ch.047: Najika and Creme Brulee (End)","v10/c047"],
  ["Vol.10 Ch.047.5: Recipes","v10/c047.5"]
);

var total_chapters = 50;

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;

