var chapter_list = new Array(
  ["Vol.01 Ch.001.1: The Owl of Minerva ~ Part One","v01/c001.1"],
  ["Vol.01 Ch.001.2: The Owl of Minerva ~ Part Two","v01/c001.2"],
  ["Vol.01 Ch.001.3: The Owl of Minerva ~ Part Three","v01/c001.3"],
  ["Vol.01 Ch.002.1: The Silver Eye ~ Part One","v01/c002.1"],
  ["Vol.01 Ch.002.2: The Silver Eye ~ Part Two","v01/c002.2"],
  ["Vol.01 Ch.002.3: The Silver Eye ~ Part Three","v01/c002.3"],
  ["Vol.02 Ch.003.1: Rokubu's Treasure ~ Part One","v02/c003.1"],
  ["Vol.02 Ch.003.2: Rokubu's Treasure ~ Part Two","v02/c003.2"],
  ["Vol.02 Ch.003.3: Rokubu's Treasure ~ Part Three","v02/c003.3"],
  ["Vol.02 Ch.004.1: Lost Royale ~ Part One","v02/c004.1"],
  ["Vol.02 Ch.004.2: Lost Royale ~ Part Two","v02/c004.2"],
  ["Vol.03 Ch.005.1: Breakthrough ~ Part One","v03/c005.1"],
  ["Vol.03 Ch.005.2: Breakthrough ~ Part Two","v03/c005.2"],
  ["Vol.03 Ch.005.3: Breakthrough ~ Part Three","v03/c005.3"],
  ["Vol.03 Ch.006.1: The Fading of Star Map ~ Part One","v03/c006.1"],
  ["Vol.03 Ch.006.2: The Fading of Star Map ~ Part Two","v03/c006.2"],
  ["Vol.03 Ch.006.3: The Fading of Star Map ~ Part Three","v03/c006.3"],
  ["Vol.04 Ch.007.1: 1st, April, 1999 ~ Part One","v04/c007.1"],
  ["Vol.04 Ch.007.2: 1st, April, 1999 ~ Part Two","v04/c007.2"],
  ["Vol.04 Ch.007.3: 1st, April, 1999 ~ Part Three","v04/c007.3"],
  ["Vol.04 Ch.008.1: Jacob's Ladder ~ Part One","v04/c008.1"],
  ["Vol.04 Ch.008.2: Jacob's Ladder ~ Part Two","v04/c008.2"],
  ["Vol.04 Ch.008.3: Jacob's Ladder ~ Part Three","v04/c008.3"],
  ["Vol.05 Ch.009.1: The Distorted Melody ~ Part One","v05/c009.1"],
  ["Vol.05 Ch.009.2: The Distorted Melody ~ Part Two","v05/c009.2"],
  ["Vol.05 Ch.009.3: The Distorted Melody ~ Part Three","v05/c009.3"],
  ["Vol.05 Ch.010.1: The Afterimage of Light ~ Part One","v05/c010.1"],
  ["Vol.05 Ch.010.2: The Afterimage of Light ~ Part Two","v05/c010.2"],
  ["Vol.05 Ch.010.3: The Afterimage of Light ~ Part Three","v05/c010.3"],
  ["Vol.06 Ch.011.1: Uncertain Memories ~ Part One","v06/c011.1"],
  ["Vol.06 Ch.011.2: Uncertain Memories ~ Part Two","v06/c011.2"],
  ["Vol.06 Ch.011.3: Uncertain Memories ~ Part Three","v06/c011.3"],
  ["Vol.06 Ch.012.1: Secret Blue Room ~ Part One","v06/c012.1"],
  ["Vol.06 Ch.012.2: Secret Blue Room ~ Part Two","v06/c012.2"],
  ["Vol.06 Ch.012.3: Secret Blue Room ~ Part Three","v06/c012.3"],
  ["Vol.07 Ch.013.1: Serial John Doe ~ Part One","v07/c013.1"],
  ["Vol.07 Ch.013.2: Serial John Doe ~ Part Two","v07/c013.2"],
  ["Vol.07 Ch.013.3: Serial John Doe ~ Part Three","v07/c013.3"],
  ["Vol.07 Ch.014.1: A Melancholy Afternoon ~ Part One","v07/c014.1"],
  ["Vol.07 Ch.014.2: A Melancholy Afternoon ~ Part Two","v07/c014.2"],
  ["Vol.07 Ch.014.3: A Melancholy Afternoon ~ Part Three","v07/c014.3"],
  ["Vol.08 Ch.015.1: Falling Down ~ Part One","v08/c015.1"],
  ["Vol.08 Ch.015.2: Falling Down ~ Part Two","v08/c015.2"],
  ["Vol.08 Ch.015.3: Falling Down ~ Part Three","v08/c015.3"],
  ["Vol.08 Ch.016.1: School Festival Melody Mania ~ Part One","v08/c016.1"],
  ["Vol.08 Ch.016.2: School Festival Melody Mania ~ Part Two","v08/c016.2"],
  ["Vol.08 Ch.016.3: School Festival Melody Mania ~ Part Three","v08/c016.3"],
  ["Vol.09 Ch.017.1: The Rules of the Game ~ Part One","v09/c017.1"],
  ["Vol.09 Ch.017.2: The Rules of the Game ~ Part Two","v09/c017.2"],
  ["Vol.09 Ch.017.3: The Rules of the Game ~ Part Three","v09/c017.3"],
  ["Vol.09 Ch.018.1: The Frozen Hammer ~ Part One","v09/c018.1"],
  ["Vol.09 Ch.018.2: The Frozen Hammer ~ Part Two","v09/c018.2"],
  ["Vol.09 Ch.018.3: The Frozen Hammer ~ Part Three","v09/c018.3"],
  ["Vol.10 Ch.019.1: In the Hand of the Witch ~ Part One","v10/c019.1"],
  ["Vol.10 Ch.019.2: In the Hand of the Witch ~ Part Two","v10/c019.2"],
  ["Vol.10 Ch.019.3: In the Hand of the Witch ~ Part Three","v10/c019.3"],
  ["Vol.10 Ch.019.4: In the Hand of the Witch ~ Part Four","v10/c019.4"],
  ["Vol.10 Ch.019.5: In the Hand of the Witch ~ Part Five","v10/c019.5"]
);

var total_chapters = 58;

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;

