// SuzyCategory:  Add your new category names.  Be sure to leave in the 'all' category!
SuzyCategory = new Array("all") // This album's too small to bother with categories.

MainVar = 0; // Sets up the variable that counts the pictures.

// Allows you to use variables for the array instead of numbers.
function Fix( DatVal, 
              PicVal, 
              TitVal, 
              CatVal, 
              TxtVal,
              BigPicVal ) { 
   this.DatVal = DatVal 
   this.PicVal = PicVal 
   this.TitVal = TitVal 
   this.CatVal = CatVal
   this.TxtVal = TxtVal 
   this.BigPicVal = BigPicVal 
} 
var MainArray = new Array() // Sets up the main array.

// Now add one line for each picture you want in the album.  The format of these lines is shown below:
// MainArray[MainVar++] = new Fix("date", "picname.jpg", "pic title", "category", "pic description", "bigpicname.jpg" )

MainArray[MainVar++] = new Fix("EISEF 2001",
"logos/EISEF2001Pin.jpg",
"2001 EISEF Logo",
"",
"The students we sent to Detroit said we should keep the Iowa-shaped pins, and this sounded good to us. The space-walking astronaut symbolizes space exploration; it's also a tip of the hat to the movie <i>2001: A Space Odyssey</i>."
);

MainArray[MainVar++] = new Fix("EISEF 2001",
"images_2001/2001_judging_room.jpg",
"Judges' Meeting Room",
"",
""
);

MainArray[MainVar++] = new Fix("EISEF 2001",
"images_2001/2001_jp47.jpg",
"Exhibit: Trent Temple",
"",
"Trent Temple<br>&laquo;&nbsp;Effects of UV Light and Digital Photography on Detecting Metal Stress&nbsp;&raquo;<br>Keota Jr/Sr HS<br>Teacher: Chris Parrish"
);

MainArray[MainVar++] = new Fix("EISEF 2001",
"images_2001/2001_sb25.jpg",
"Exhibit: Arie Schiller",
"",
"Arie Schiller <br>EISEF Senior Biological Division Class I winner<br>&laquo;&nbsp;Environmental Factors on the <em>Ceratopteris</em> Fern Life Cycle&nbsp;&raquo;<br>Central Lee, Donnellson<br>Teacher: Ernie Schiller"
);

MainArray[MainVar++] = new Fix("EISEF 2001",
"images_2001/2001_sb27.jpg",
"Exhibit: Amber Hohl",
"",
"Amber Hohl <br>EISEF Senior Champion<br>&laquo;&nbsp;Anhydrobiotic Capacities of Three Species of <em>Tardigrada</em>&nbsp;&raquo;<br>Central Lee, Donnellson<br>Teacher: Ernie Schiller"
);

MainArray[MainVar++] = new Fix("EISEF 2001",
"images_2001/2001_sb28.jpg",
"Exhibit: Matthew Sieren",
"",
"Matthew Sieren<br>&laquo;&nbsp;Palmar Hyperhidrosis (Hand Sweat) Effects on Different Metals&nbsp;&raquo;<br>Keota Jr/Sr HS, Keota<br>Teacher: Chris Parrish"
);

MainArray[MainVar++] = new Fix("EISEF 2001",
"images_2001/2001_exhibits.jpg",
"Senior Biological Exhibit Area",
"",
"Steve Adams is on the left in blue jeans and plaid shirt."
);

MainArray[MainVar++] = new Fix("EISEF 2001",
"images_2001/2001_sp1.jpg",
"Exhibit: Paul Dobson",
"",
"Paul Dobson<br>EISEF Senior Physical Division Class II winner<br>&laquo;&nbsp;Maximizing Efficiency&nbsp;&raquo;<br>Central Lee, Donnellson<br>Teacher: Ernie Schiller"
);

MainArray[MainVar++] = new Fix("EISEF 2001",
"images_2001/2001_sp10_a.jpg",
"Exhibit: Blake Forsythe",
"",
"Blake Forsythe <br>EISEF Senior Champion<br>&laquo;&nbsp;Nose-Cone Design & the Dynamics of Model Rocket Flight&nbsp;&raquo;<br>Harmony HS, Farmington<br>Teacher: Leroy Pankey"
);

MainArray[MainVar++] = new Fix("EISEF 2001",
"images_2001/2001_sp10_b.jpg",
"Exhibit: Blake Forsythe",
"",
"Blake Forsythe (left, facing camera) explains his exhibit to two judges and a judge's daughter."
);
