// SuzyCategory:  Add your new category names.  Be sure to leave in the 'all' category!
SuzyCategory = new Array("All", "Reptiles", "Insects", "Plants", "Arachnids", "Birds")

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

function Fix(DatVal, PicVal, TitVal, CatVal, TxtVal) { // Allows you to use variables for the array instead of numbers.
   this.DatVal = DatVal 
   this.PicVal = PicVal 
   this.TitVal = TitVal 
   this.CatVal = CatVal
   this.TxtVal = TxtVal 
} 
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")

MainArray[MainVar++] = new Fix("April 2, 2007", "images/r001.jpg", "Lizard", "Reptiles", "on a log by stegoceras")
MainArray[MainVar++] = new Fix("April 18, 2009", "images/snake1.jpg", "Rat Snake", "Reptiles", "Resident rat snake - our kids named it Sirviper - He's very photogenic and seems to enjoy attention from our visitors. Picture taken by Christy Cox")
MainArray[MainVar++] = new Fix("March 11, 2007", "images/i002.jpg", "Moth", "Insects", "on the tree.")
MainArray[MainVar++] = new Fix("March 11, 2007", "images/i001.jpg", "Leaf bug", "Insects", "on the store wall.")
MainArray[MainVar++] = new Fix("April 6, 2007", "images/dragonfly01.jpg", "Dragonfly", "insects", "Dragonfly sitting on a mesquite tree full of large thorns.")
MainArray[MainVar++] = new Fix("April 8, 2007", "images/walkstick01.jpg", "Walking Stick", "insects", "on a tree.")
MainArray[MainVar++] = new Fix("April 18, 2009", "images/holly.jpg", "Yaupon Holly", "Plants", "The ornamental twigs with shiny evergreen leaves and numerous red berries are favorite Christmas decoration. Yaupon Holly is sometimes grown for ornament and trimmed into hedges. The leaves contain caffeine, and American Indians used them to prepare a tea to induce vomiting and as a laxative.")
MainArray[MainVar++] = new Fix("April 18, 2009", "images/cactus.jpg", "Cactus", "Plants", "Cactus plant full of prickly thorns.")
MainArray[MainVar++] = new Fix("April 18, 2009", "images/pencilcactus.jpg", "Pencil Cactus", "Plants", "Pencil Cactus also known as Christmas Cactus, because of its red berries during the winter months. Careful with the thorns on this one because they are very small and it's hard to extract them.")
MainArray[MainVar++] = new Fix("April 23, 2009", "images/cedar.jpg", "Cedar Tree", "Plants", "Cedar Tree, what can we say, some look like christmas trees.")
MainArray[MainVar++] = new Fix("April 23, 2009", "images/roadrunner.jpg", "Roadrunner", "Birds", "With a little imagination, you can almost see compsognathus or the velociraptor in him.")

