// SuzyCategory:  Add your new category names.  Be sure to leave in the 'all' category!
SuzyCategory = new Array("all", "misc_pics")

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("", "http://www.outcastadventures.com/sonar/Sonar_explanation1.jpg", "Sonar Graph Explanation", "", "Click on the photo for an explanation of the graph picture")
MainArray[MainVar++] = new Fix("", "http://www.outcastadventures.com/sonar/Sonar_explanation2.jpg", "Sonar Graph Explanation", "", "Click on the photo for an explanation of the graph picture")
MainArray[MainVar++] = new Fix("", "http://www.outcastadventures.com/sonar/Sonar2.jpg", "Sonar Pictures", "", "")
MainArray[MainVar++] = new Fix("", "http://www.outcastadventures.com/sonar/Sonar3.jpg", "Sonar Pictures", "", "")
MainArray[MainVar++] = new Fix("", "http://www.outcastadventures.com/sonar/Sonar5.jpg", "Sonar Pictures", "", "")
MainArray[MainVar++] = new Fix("", "http://www.outcastadventures.com/sonar/Sonar7.jpg", "Sonar Pictures", "", "")
MainArray[MainVar++] = new Fix("", "http://www.outcastadventures.com/sonar/Sonar8.jpg", "Sonar Pictures", "", "")
MainArray[MainVar++] = new Fix("", "http://www.outcastadventures.com/sonar/Sonar9.jpg", "Sonar Pictures", "", "")
MainArray[MainVar++] = new Fix("", "http://www.outcastadventures.com/sonar/Sonar10.jpg", "Sonar Pictures", "", "")
MainArray[MainVar++] = new Fix("", "http://www.outcastadventures.com/sonar/Sonar11.jpg", "Sonar Pictures", "", "")
MainArray[MainVar++] = new Fix("", "http://www.outcastadventures.com/sonar/Sonar12.jpg", "Sonar Pictures", "", "")
MainArray[MainVar++] = new Fix("", "http://www.outcastadventures.com/sonar/SonarPic.jpg", "Sonar Pictures", "", "")
MainArray[MainVar++] = new Fix("", "http://www.outcastadventures.com/sonar/Hybrids.jpg", "Sonar Pictures", "", "")

