var chapter_list = new Array(
  ["Vol.01 Ch.001: Fragrance of 100 Flowers","v01/c001"],
  ["Vol.01 Ch.002: Prayer to the Fertile Earth","v01/c002"],
  ["Vol.01 Ch.003: The Exquisite and Dignified Queen","v01/c003"],
  ["Vol.01 Ch.004: The Aroma that Woke up in Bed","v01/c004"],
  ["Vol.01 Ch.005: The God of Burgundy Wine","v01/c005"],
  ["Vol.01 Ch.006: The Maiden Who Runs Away in Strawberry Fields","v01/c006"],
  ["Vol.01 Ch.007: Tasting in the Park","v01/c007"],
  ["Vol.01 Ch.008: Take this God's Blessing with Both Hands","v01/c008"],
  ["Vol.02 Ch.009: Drink up Another Glass","v02/c009"],
  ["Vol.02 Ch.010: A Maiden Smiling in the Strawberry Fields","v02/c010"],
  ["Vol.02 Ch.011: The Parting Desert Is Sweet and...","v02/c011"],
  ["Vol.02 Ch.012: Those Who See It Through","v02/c012"],
  ["Vol.02 Ch.013: At the Beginning of All Fights","v02/c013"],
  ["Vol.02 Ch.014: A Lovely and Cruel Flower","v02/c014"],
  ["Vol.02 Ch.015: The Whip of Love to the Stylish Girl","v02/c015"],
  ["Vol.02 Ch.016: The Mysterious Man in the Wine Department","v02/c016"],
  ["Vol.02 Ch.017: Merry-Go-Round","v02/c017"],
  ["Vol.02 Ch.018: A Fantastico Night","v02/c018"],
  ["Vol.03 Ch.019: Fatality Comes with Food","v03/c019"],
  ["Vol.03 Ch.020: Wine or Food","v03/c020"],
  ["Vol.03 Ch.021: Father and Daughter","v03/c021"],
  ["Vol.03 Ch.022: The Awakening of a God","v03/c022"],
  ["Vol.03 Ch.023: Chablis and Oysters","v03/c023"],
  ["Vol.03 Ch.024: The Real Preparations","v03/c024"],
  ["Vol.03 Ch.025: The Quiet Beginning of Another Battle","v03/c025"],
  ["Vol.03 Ch.026: A Surprise Gift","v03/c026"],
  ["Vol.03 Ch.027: The Nature of French Wine","v03/c027"],
  ["Vol.03 Ch.028: The Wine Loving Brothers from Downtown","v03/c028"]
);

var total_chapters = 28;

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;

