var sS1Titles = new Array(
     "Premiere",
     "I, E.T.",
     "Exodus from Genesis",
     "Throne for a Loss",
     "Back and Back and Back to the Future",
     "Thank God It's Friday Again",
     "PK Tech Girl",
     "That Old Black Magic",
     "DNA Mad Scientist",
     "They've Got a Secret",
     "Till The Blood Runs Clear",
     "Rhapsody in Blue",
     "The Flax",
     "Jeremiah Crichton",
     "Durka Returns",
     "A Human Reaction",
     "Through The Looking Glass",
     "A Bug's Life",
     "Nerve",
     "The Hidden Memory",
     "Bone To Be Wild",
     "Family Ties"
   );

function drawSeasonOne()
{
    realDrawSeasonOne(true);
}

function realDrawSeasonOne(drawDetails)
{
   var iRatings = new Array(
        8, // Premiere
        6, // I, E.T.
        7, // Exodus From Genesis
        6, // Throne for A Loss
        7, // Back And Back And Back To The Future
        6, // Thank God It's Friday Again
        7, // PK Tech Girl
        6, // That Old Black Magic
        7, // DNA Mad Scientist
        6, // They've Got A Secret
        8, // Till The Blood Runs Clear
        5, // Rhapsody In Blue
        8, // The Flax
        5, // Jeremiah Crichton
        7, // Durka Returns
        8, // A Human Reaction
        7, // Through The Looking Glass
        8, // A Bug's Life
        8, // Nerve
        8, // The Hidden Memory
        6, // Bone To Be Wild
        8 // Family Ties
      );
   var sAirDates = new Array(
        "March 19, 1999",    // Premiere
        "May 7, 1999",       // I, E.T.
        "April 2, 1999",     // Exodus From Genesis
        "April 9, 1999",     // Throne for A Loss
        "March 26, 1999",    // Back And Back And Back To The Future
        "April 23, 1999",    // Thank God It's Friday Again
        "March 14, 1999",    // PK Tech Girl
        "June 11, 1999",     // That Old Black Magic
        "June 18, 1999",     // DNA Mad Scientist
        "June 25, 1999",     // They've Got A Secret
        "July 9, 1999",      // Till The Blood Runs Clear
        "July 23, 1999",     // Rhapsody In Blue
        "July 16, 1999",     // The Flax
        "July 30, 1999",     // Jeremiah Crichton
        "August 13, 1999",   // Durka Returns
        "August 20, 1999",   // A Human Reaction
        "September 10, 1999",// Through The Looking Glass
        "September 17, 1999",// A Bug's Life
        "January 14, 2000",  // Nerve
        "January 21, 2000",  // The Hidden Memory
        "January 28, 2000",  // Bone To Be Wild
        "February 4, 2000"   // Family Ties
      );
   var sQuote = "My name is John Crichton, an astronaut...\n" +
      "A radiation wave hit, and I got shot through a wormhole...\n" +
      "Now I'm lost in some distant part of the universe...\n" +
      "On a ship, a living ship, full of strange alien life forms...\n" +
      "Help me.  Listen, please...\n" +
      "Is there anybody out there who can hear me?\n" +
      "I'm being hunted by an insane military commander...\n" +
      "Doing everything I can... I'm just looking for a way home.<BR><BR>\n" +
      "<A TARGET=\"JAVideo\" HREF=\"http://brent.wirehed.com/ja/video/Season1Titles.wmv\"><IMG BORDER=1 WIDTH=64 HEIGHT=24 SRC=\"../images/button-watch.gif\"></A>\n" +
      "<A TARGET=\"JAAudio\" HREF=\"http://brent.wirehed.com/ja/audio/IntroSeason1-2.mp3\"><IMG BORDER=1 WIDTH=64 HEIGHT=24 SRC=\"../images/button-listen.gif\"></A>\n" +
      "<A HREF=\"javascript:ShowCredits('s1');\"><IMG BORDER=1 WIDTH=64 HEIGHT=24 SRC=\"../images/button-titles.gif\"></A>\n" +
      "<A HREF=\"http://brent.wirehed.com/ja/forum/index.php?board=11.0\"><IMG BORDER=1 WIDTH=64 HEIGHT=24 SRC=\"../images/button-discuss.gif\"></A>\n";

   drawGuideIndex(1, sS1Titles, sAirDates, iRatings, "s1-", sQuote, "Season One", "1999-2000", drawDetails);
}

