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

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/paintings/RidetoFloor23.jpg", "Ride to Floor 23",  "Hawk", "<center>Currently Located<br> at the Hawk Galleries</center>")
MainArray[MainVar++] = new Fix("2008", "images/paintings/YackYack.jpg", "Yack Yack",  "Hawk", "<center>Currently Located<br> at the Hawk Galleries</center>")
MainArray[MainVar++] = new Fix("2009", "images/paintings/EveryGardenaMunitionsPlant.jpg", "Every Garden a Munitions Plant")
MainArray[MainVar++] = new Fix("2009", "images/paintings/RocketEnvy.jpg", "Rocket Envy")
MainArray[MainVar++] = new Fix("2009", "images/paintings/RosietheRipper.jpg", "Rosie the Ripper")
MainArray[MainVar++] = new Fix("2009", "images/paintings/TheFinger.jpg", "The Finger")
MainArray[MainVar++] = new Fix("2009", "images/paintings/InMyBubble.jpg", "In My Bubble")
