// SuzyCategory:  Add your new category names.  Be sure to leave in the 'all' category!
SuzyCategory = new Array("all", "covo")

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("March 2006", "pictures/alohaMissionLeyte2006/Dr_Ansdell_with_young_girl2.jpg", "Dr. Ansdell", "Aloha Mission Leyte", "Dr. Ansdell with young girl")
MainArray[MainVar++] = new Fix("March 2006", "pictures/alohaMissionLeyte2006/Group_Photo_in_Leyte2.jpg", "Group Photo", "Aloha Mission Leyte", "Group Photo")
MainArray[MainVar++] = new Fix("March 2006", "pictures/alohaMissionLeyte2006/Mudslide_visit2.jpg", "Mudslide", "Aloha Mission Leyte", "Visit to mudslide area")
MainArray[MainVar++] = new Fix("March 2006", "pictures/alohaMissionLeyte2006/P3210088.JPG", "Group Photo 2", "Aloha Mission Leyte", "Group Photo")
MainArray[MainVar++] = new Fix("March 2006", "pictures/alohaMissionLeyte2006/P3210089.JPG", "Group Photo 3", "Aloha Mission Leyte", "Group Photo")
MainArray[MainVar++] = new Fix("March 2006", "pictures/alohaMissionLeyte2006/P3210090.JPG", "Group Photo 3", "Aloha Mission Leyte", "Group Photo")

