var chapter_list = new Array(
  ["Vol.01 Ch.000","v01/c000"],
  ["Vol.02 Ch.000.1","v02/c000.1"],
  ["Vol.02 Ch.000.2","v02/c000.2"],
  ["Vol.03 Ch.000","v03/c000"],
  ["Vol.03 Ch.001: Extra","v03/c001"],
  ["Vol.04 Ch.017","v04/c017"],
  ["Vol.04 Ch.018","v04/c018"],
  ["Vol.04 Ch.019","v04/c019"],
  ["Vol.04 Ch.020","v04/c020"],
  ["Vol.04 Ch.021","v04/c021"],
  ["Vol.04 Ch.022.1","v04/c022.1"],
  ["Vol.04 Ch.022.2","v04/c022.2"],
  ["Vol.04 Ch.022.3","v04/c022.3"],
  ["Vol.04 Ch.023: Extra","v04/c023"]
);

var total_chapters = 14;

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;

