// SuzyCategory:  Add your new category names.  Be sure to leave in the 'all' category!
SuzyCategory = new Array("all", "misc")

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("October", "/pics/oct3.jpg", "I Love Roses", "misc", "This is one of the 12 roses Vince bought me way back when.")
MainArray[MainVar++] = new Fix("June 26, 04", "/2004/june26a.jpg", "Siblings", "misc", "William & Grace, Hitchin' a ride.")
MainArray[MainVar++] = new Fix("December 2003", "/pics/Kristi03.jpg", "My Neice", "misc", "Kristi")
MainArray[MainVar++] = new Fix("December 2003", "/pics/family2.jpg", "The House Family", "misc", "Gotta love the face William is making..unfortunately, he is doing that more often!")
MainArray[MainVar++] = new Fix("December 2003", "/pics/family3.jpg", "The House Family", "misc", "Ok, the kids & Vince were DONE by the time this picture was taken!")
MainArray[MainVar++] = new Fix("In Loving Memory", "/pics/dad.jpg", "William Francis Cochran", "misc", "Picture of my dad taken in the late 70's.")
MainArray[MainVar++] = new Fix("2002", "/pics/kristi.jpg", "Kristi", "misc", "My favporite Senior Photo of my neice")
MainArray[MainVar++] = new Fix("Just Me", "/pics/Patty.jpg", "Me", "misc", "Taken 1995-ish")
MainArray[MainVar++] = new Fix("November 1998", "/pics/V&P.jpg", "Us", "misc", "One of our Engagement photos")
MainArray[MainVar++] = new Fix("January 16, 1999", "/pics/V&P2.jpg", "Us", "misc", "One of our Wedding photos")
MainArray[MainVar++] = new Fix("1995", "/pics/Vince.jpg", "Vince", "misc", "Navy Photo")
MainArray[MainVar++] = new Fix("November 6, 2003", "/pics/nov6d.jpg", "5 Generations", "misc", "Jerry - my stepdad, his mom, Hope - Jerry's youngest, Gwen's Twins, & Gwen")
