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

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("2008", "images/wallArt/ConflictResolution.jpg", "Conflict Resolution",  "noGallery", "<center>Currently Not Located<br> at a Gallery</center>")
MainArray[MainVar++] = new Fix("2008", "images/wallArt/enthusiasm.jpg", "enthusiasm",  "noGallery", "<center>Currently Not Located<br> at a Gallery</center>")
MainArray[MainVar++] = new Fix("2008", "images/wallArt/FamilyRelations.jpg", "Family Relations",  "noGallery", "<center>Currently Not Located<br> at a Gallery</center>")
MainArray[MainVar++] = new Fix("2008", "images/wallArt/Flirt.jpg", "Flirt",  "noGallery", "<center>Currently Not Located<br> at a Gallery</center>")
MainArray[MainVar++] = new Fix("2008", "images/wallArt/SpicyFlowers", "Spicy Flowers",  "noGallery", "<center>Currently Not Located<br> at a Gallery</center>")
MainArray[MainVar++] = new Fix("2008", "images/wallArt/TallerbyaNose.jpg", "Taller by a Nose",  "noGallery", "<center>Currently Not Located<br> at a Gallery</center>")
MainArray[MainVar++] = new Fix("2008", "images/wallArt/TheObserver.jpg", "The Observer",  "noGallery", "<center>Currently Not Located<br> at a Gallery</center>")
MainArray[MainVar++] = new Fix("2008", "images/wallArt/ADayattheBeach.jpg", "A Day at the Beach",  "noGallery", "<center>Currently Not Located<br> at a Gallery</center>")