// SuzyCategory:  Add your new category names.  Be sure to leave in the 'all' category!
SuzyCategory = new Array("All", "Family")

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("December 2007", "/familypictures/atgxmas07.jpg", "Andrew & the Tree", "Family", "Andrew before his 2nd grade Christmas musical at Plumstead.")
MainArray[MainVar++] = new Fix("Summer 2007", "/familypictures/ragatgcave07.jpg", "Mommy & Andrew", "Family", "We had a family outing one Saturday to Lost River Caverns.")
MainArray[MainVar++] = new Fix("March 2007", "/familypictures/gigragFL07.jpg", "Gene & Robin", "Family", "We added some R&R to a business trip to Ft. Myers. This is the game preserve on Sanibel Island.")
MainArray[MainVar++] = new Fix("July 2005", "/familypictures/Benedict05.jpg", "Benedict Family", "Family", "All families have outlaws and these are ours...aren't they cute for living south of the Mason-Dixon?")
MainArray[MainVar++] = new Fix("September 2007", "/familypictures/Greiner07.jpg", "Greiner Family", "Family", "Our church directory picture. Isn't the goat manly?")
MainArray[MainVar++] = new Fix("July 2005", "/familypictures/gsmith80th.jpg", "Grandma Smith's 80th Birthday", "Family", "We love you, Grandma! Most of the family together.")
MainArray[MainVar++] = new Fix("Sometime in 2005?", "/familypictures/atgpippy.jpg", "Andrew & Pippy", "Family", "Our first and second children. He loves his puppy!")
MainArray[MainVar++] = new Fix("Early 2006", "/familypictures/atgbenedicts.jpg", "The Cousins", "Family", "Justin, Amanda, Andrew, and Joshua - Andrew's Virginia Cousins.")
