// SuzyCategory:  Add your new category names.  Be sure to leave in the 'all' category!
SuzyCategory = new Array("all")

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("", "pics/red-1.jpg", "Red Hawaii", "", "")
MainArray[MainVar++] = new Fix("", "pics/blue-1.jpg", "Blue Hawaii", "", "")
MainArray[MainVar++] = new Fix("", "pics/parrot-1.jpg", "Parrot", "", "")
MainArray[MainVar++] = new Fix("", "pics/palmPineapple-1.jpg", "Palm Tree", "", "")
MainArray[MainVar++] = new Fix("", "pics/all4.jpg", "Four Designs", "", "")
MainArray[MainVar++] = new Fix("", "pics/walletHolder.jpg", "Wallet, keys and Card Keeper", "", "")
MainArray[MainVar++] = new Fix("", "pics/beachChair-1.jpg", "By the pool", "", "")
MainArray[MainVar++] = new Fix("", "pics/aPlaceForYourStuff.jpg", "A place for your stuff", "", "")
MainArray[MainVar++] = new Fix("", "pics/soooSoft.jpg", "Sooo Soft", "", "")
MainArray[MainVar++] = new Fix("", "pics/noNotThisWay.jpg", "Wrong!", "", "")
MainArray[MainVar++] = new Fix("", "pics/atTheBeach2.jpg", "Everything you need", "", "")
MainArray[MainVar++] = new Fix("", "pics/atTheBeach1.jpg", "Ready for the rays", "", "")
MainArray[MainVar++] = new Fix("", "pics/onTheDeck.jpg", "On the deck", "", "")
MainArray[MainVar++] = new Fix("", "pics/allSet.jpg", "All set!", "", "")
MainArray[MainVar++] = new Fix("", "pics/atlantis.jpg", "Atlantis", "", "")
MainArray[MainVar++] = new Fix("", "pics/atlantis_2.jpg", "Atlantis", "", "")
MainArray[MainVar++] = new Fix("", "pics/ritzCarlton.jpg", "The Ritz Carlton", "", "")
MainArray[MainVar++] = new Fix("", "pics/crownreef.jpg", "The Crown Reef Resort", "", "")
MainArray[MainVar++] = new Fix("", "pics/princess.jpg", "Princess", "", "")
MainArray[MainVar++] = new Fix("", "pics/3carnivals.jpg", "Three Carnivals", "", "")
MainArray[MainVar++] = new Fix("", "pics/carnivalByTheSea.jpg", "Carnival by the Sea", "", "")