var chapter_list = new Array(
  ["Vol.01 Ch.001: I Bought a Cell Phone","v01/c001"],
  ["Vol.01 Ch.002: Should Be Picky About the Design","v01/c002"],
  ["Vol.01 Ch.003: Want to Carry Around a Phone and Be Carried","v01/c003"],
  ["Vol.01 Ch.004: Beware the Boundaries of a Phone Call","v01/c004"],
  ["Vol.01 Ch.005: If You Get a Phone, Brag to Your Friends","v01/c005"],
  ["Vol.01 Ch.006: Let's Choose the Ring Tone Carefully","v01/c006"],
  ["Vol.01 Ch.007: Let's Send Eko a Message!","v01/c007"],
  ["Vol.01 Ch.008: Payment Swindler Prevention","v01/c008"],
  ["Vol.01 Ch.009: The Number of People That Use Their Phone for Photography Is Increasing","v01/c009"],
  ["Vol.01 Ch.010: Try Not to Show Off Your Cell Too Much in Public","v01/c010"],
  ["Vol.01 Ch.011: If Your Phone Is Taken, Try to Get It Back","v01/c011"],
  ["Vol.01 Ch.012: Beware of the Service Charges!","v01/c012"],
  ["Vol.01 Ch.013: And This Is How Spam Mail Comes","v01/c013"],
  ["Vol.01 Ch.014: Cellphones Are Afraid of Being Illegally Modified","v01/c014"],
  ["Vol.02 Ch.015: A Cellphone Is Surprisingly Sturdy","v02/c015"],
  ["Vol.02 Ch.016","v02/c016"],
  ["Vol.02 Ch.017: Keep Your Cell Always with You","v02/c017"],
  ["Vol.02 Ch.018: Showercap Is Bad for a Cell","v02/c018"],
  ["Vol.02 Ch.019","v02/c019"],
  ["Vol.02 Ch.020: Test Your Cell Occasionally","v02/c020"],
  ["Vol.02 Ch.021: Good Cellphones, Bad Cellphones","v02/c021"],
  ["Vol.02 Ch.022: Don't Forget to Bring Your Cell When You Travel","v02/c022"],
  ["Vol.02 Ch.023: First in the World!  This Is What Happens When You Dip a Cell in the Hot Springs!","v02/c023"],
  ["Vol.02 Ch.024: It's Not Always Good to Have a Small Cell","v02/c024"],
  ["Vol.02 Ch.025: Know the Sex of Your Cell","v02/c025"],
  ["Vol.02 Ch.026: Decisive Battle","v02/c026"],
  ["Vol.02 Ch.027: Loved Over the Cellular Call","v02/c027"],
  ["Vol.02 Ch.028: Turn Your Cell Off Before You Tell Someone You Love Them","v02/c028"],
  ["Vol.02 Ch.029","v02/c029"],
  ["Vol.03 Ch.030: Please Do Not Allow Your Cell Phone to Jump Out of Line","v03/c030"],
  ["Vol.03 Ch.031: Please Do Not Bring Your Cell Phone with You to a Waterfall","v03/c031"],
  ["Vol.03 Ch.032: Please Bring Cell Phones for Your Important Family Members","v03/c032"],
  ["Vol.03 Ch.033: Please Refrain from Feeding Your Cell Phones","v03/c033"],
  ["Vol.03 Ch.034: Perhaps This Is the Way to Buy a Cell Phone","v03/c034"],
  ["Vol.03 Ch.035: This Is Not a Cell Phone","v03/c035"],
  ["Vol.03 Ch.036: Does a Cell Phone Need a Name?","v03/c036"],
  ["Vol.03 Ch.037: Please Take Notice When Using a PHS","v03/c037"],
  ["Vol.03 Ch.038: No Matter How Cute the PHS Is, You Must Teach It Properly","v03/c038"],
  ["Vol.03 Ch.039: If a Cell Phone and PHS Start to Fight, Something Amazing Will Happen","v03/c039"],
  ["Vol.03 Ch.040: No Matter How Many Times You Change it, the Pain is Not Eraseable","v03/c040"],
  ["Vol.03 Ch.041: Please Note! Cell Phones and Bodies Shouldn't Be Overused","v03/c041"],
  ["Vol.03 Ch.042: Ring Tones and Sudden Realizations All Come Suddenly.","v03/c042"],
  ["Vol.03 Ch.043: The Heart Is More Complex Than Even the Most Sophisticated Robot","v03/c043"],
  ["Vol.03 Ch.044: Full Reception of Misfortunes","v03/c044"],
  ["Vol.03 Ch.045: The Path to Cell Phone Happiness","v03/c045"],
  ["Vol.03 Ch.045.5: Nano to Issho 070","v03/c045.5"],
  ["Vol.04 Ch.046: Destiny, Message Ninja","v04/c046"],
  ["Vol.04 Ch.047: Cell Phone Grades, First Report!","v04/c047"],
  ["Vol.04 Ch.048: Are There Cell Phone Delinquents Too?","v04/c048"],
  ["Vol.04 Ch.049: Don't Think, Feeeeeeeeel","v04/c049"],
  ["Vol.04 Ch.050: Everyone's White Christmas","v04/c050"],
  ["Vol.04 Ch.051: The World's First! A Cellphone That Changes Personality?","v04/c051"],
  ["Vol.04 Ch.052: Pushing It to the Other Person","v04/c052"],
  ["Vol.04 Ch.053: It's Not a New Model... It's a Baby Model?","v04/c053"],
  ["Vol.04 Ch.054: A Chaotic New Year","v04/c054"],
  ["Vol.04 Ch.055: Cell Phone Baby, Cell Phone Adult","v04/c055"],
  ["Vol.04 Ch.056: Yesterday's Secret","v04/c056"],
  ["Vol.04 Ch.057: Successor and Successing Phone","v04/c057"],
  ["Vol.04 Ch.058: Something Even the Newest Model Doesn't Know","v04/c058"],
  ["Vol.04 Ch.059: Sorry, Thank You...","v04/c059"],
  ["Vol.04 Ch.060: Last call:  Forever 090 Eko to Issho","v04/c060"],
  ["Vol.04 Ch.060.5: [Extra] President to Issho","v04/c060.5"]
);

var total_chapters = 62;

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;

