var chapter_list = new Array(
  ["Vol.01 Ch.001: Sayonara Zetsubou Sensei","v01/c001"],
  ["Vol.01 Ch.002: Return of despairing Sensei","v01/c002"],
  ["Vol.01 Ch.003: The light at the end of the tunnel","v01/c003"],
  ["Vol.01 Ch.004: Before me, there is no one, behind me, there is you","v01/c004"],
  ["Vol.01 Ch.005: Losing neither to elbow nor knee","v01/c005"],
  ["Vol.01 Ch.006: Fly over that country and come here","v01/c006"],
  ["Vol.01 Ch.007: The antenna has risen, we must try and live","v01/c007"],
  ["Vol.01 Ch.008: Shelf your book properly, go out in the streets","v01/c008"],
  ["Vol.01 Ch.009: Whatever happens between us, if we don't get complicated, it's useless","v01/c009"],
  ["Vol.01 Ch.010: This group is a class with a lot of problems - please accept that somehow","v01/c010"],
  ["Vol.02 Ch.011: I wish to cover tonight's moon with my tears","v02/c011"],
  ["Vol.02 Ch.012: forelocks yet to be open","v02/c012"],
  ["Vol.02 Ch.013: i don't want to know you anymore","v02/c013"],
  ["Vol.02 Ch.014: my fate is to be overshadowed","v02/c014"],
  ["Vol.02 Ch.015: Apen name's confession","v02/c015"],
  ["Vol.02 Ch.016: This nation is full of people","v02/c016"],
  ["Vol.02 Ch.017: Sister in law, im an aristocrat","v02/c017"],
  ["Vol.02 Ch.018: Jump before you exchange glances","v02/c018"],
  ["Vol.02 Ch.019: If you ran away from that, then come here, philostratus!","v02/c019"],
  ["Vol.02 Ch.020: I was so crazy so i searched for the skies","v02/c020"],
  ["Vol.03 Ch.021","v03/c021"],
  ["Vol.03 Ch.022","v03/c022"],
  ["Vol.03 Ch.023: A Cultured Person Found Shelter from the Rain Under Rashomon.","v03/c023"],
  ["Vol.03 Ch.024: Raw Yatsuhashi Dough Must Be Baked","v03/c024"],
  ["Vol.03 Ch.025","v03/c025"],
  ["Vol.03 Ch.026: One Morning, Gregor Samsa Awoke Being Carried on a Mikoshi","v03/c026"],
  ["Vol.03 Ch.027: The Evening Primroses at Fuji are Mistaken","v03/c027"],
  ["Vol.03 Ch.028: I thought &quot;Let's Prove It&quot; this New Years","v03/c028"],
  ["Vol.03 Ch.029: Because of the Lethargy I Inherited, I can do nothing but Hibernate","v03/c029"],
  ["Vol.03 Ch.030: Mushashino is now Darkness","v03/c030"],
  ["Vol.09 Ch.081","v09/c081"],
  ["Vol.09 Ch.082","v09/c082"],
  ["Vol.09 Ch.083: No Longer Shogun","v09/c083"],
  ["Vol.09 Ch.084: Japan's Attached Chronicle","v09/c084"],
  ["Vol.09 Ch.085: Ornaments at Tiffany's","v09/c085"],
  ["Vol.09 Ch.086: Meganekko's House","v09/c086"],
  ["Vol.09 Ch.087: Love and ConQuest's Fascism","v09/c087"],
  ["Vol.09 Ch.088: The Biggest April Fool","v09/c088"],
  ["Vol.09 Ch.089: Yada-Chan Said &quot;It's a Recharge&quot; in a Small Voice","v09/c089"],
  ["Vol.09 Ch.090: &quot;Don't Say it so Casually!&quot; The Melos of a Furious Rebuttal","v09/c090"],
  ["Vol.10 Ch.105: The Dropper In The Rye","v10/c105"],
  ["Vol.13 Ch.121: Individualism Delivery","v13/c121"],
  ["Vol.13 Ch.122: The comparison of the Cliff","v13/c122"],
  ["Vol.13 Ch.123: Patienesque","v13/c123"],
  ["Vol.13 Ch.124: Crisis Became A Bitch","v13/c124"],
  ["Vol.13 Ch.125: The Records Of The East","v13/c125"],
  ["Vol.13 Ch.126: Sweet Princess","v13/c126"],
  ["Vol.13 Ch.127","v13/c127"],
  ["Vol.13 Ch.128: The Measels of Madison County","v13/c128"],
  ["Vol.13 Ch.129: Time Tales of Russia","v13/c129"],
  ["Vol.13 Ch.130: The novel that lost","v13/c130"],
  ["Vol.14 Ch.131: The Forest of the Chosen Flower","v14/c131"],
  ["Vol.14 Ch.132: Woman in the Golden Sand","v14/c132"],
  ["Vol.14 Ch.133: The Murders in the Excluded Street","v14/c133"],
  ["Vol.14 Ch.134: The Summer Postman Always Rings Twice","v14/c134"],
  ["Vol.14 Ch.135: Chapayev And Elimination","v14/c135"],
  ["Vol.14 Ch.136: Demonstration Aim","v14/c136"],
  ["Vol.14 Ch.137: Side Efects Also Included","v14/c137"],
  ["Vol.14 Ch.138: To Say That The Pursuit Of Happiness From A Process Is The Origin Of Crime","v14/c138"],
  ["Vol.14 Ch.139: Innocent Decision","v14/c139"],
  ["Vol.14 Ch.140: A World With Words","v14/c140"],
  ["Vol.15 Ch.141: How I Became an Honest Man","v15/c141"],
  ["Vol.16 Ch.157: Night Of Polygon","v16/c157"],
  ["Vol.16 Ch.158: The Android Is Having A Dream Of Being A Bride Mechanism","v16/c158"],
  ["Ch.160.5: Extra Chapter: The night of Kiyohiko + The optimism prize","c160.5"],
  ["Vol.25 Ch.190: Scatter, Spread and Mature","v25/c190"],
  ["Vol.25 Ch.196: Combitems","v25/c196"]
);

var total_chapters = 67;

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;
