/**********************************************************
 * Original code by photokity@hotmail.com  (kitykity.com)
 * Modified for JP site 9/27/04, TM   
 **********************************************************/

// jpCategory:  Add your new category names.  Be sure to leave in the 'all' category!
jpCategory = new Array("all", "cat1", "cat2", "cat3", "cat4")

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.

// 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("1/14/2004", "images/gallery/Picture_003.jpg", "San salvador welcomes", "cat1", "San salvador welcomes")
MainArray[MainVar++] = new Fix("2/14/2004", "images/gallery/Picture_128.jpg", "kids clapping", "cat2", "kids clapping")
MainArray[MainVar++] = new Fix("3/14/2004", "images/gallery/Picture_132.jpg", "lots o kids", "cat2", "lots o kids")
MainArray[MainVar++] = new Fix("4/14/2004", "images/gallery/Picture_234.jpg", "big hug", "cat2", "big hug")
