// SuzyCategory:  Add your new category names.  Be sure to leave in the 'all' category!
SuzyCategory = new Array("all", "boats", "downs")

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("1 June 2005", "abeautifulview.jpg", "A Beautiful View", "Boats", "A shot of Chichester Harbour boats and water")


MainArray[MainVar++] = new Fix("1 June 2005", "adogseyeview.jpg", "A Dogs Eye View", "Downs", "Shot of South Downs dog walkers")


MainArray[MainVar++] = new Fix("1 June 2005", "adistantview.jpg", "A Distant View", "Downs", "Open View of South Downs")


MainArray[MainVar++] = new Fix("1 June 2005", "aviewofsteyning.jpg", "A View Of Steyning", "Downs", "Open View of South Downs")

MainArray[MainVar++] = new Fix("2nd June 2005", "allmostbehindbars.jpg", "Looking thru Bars", "Lancing Beach Work", "This is the sea defence work being carried out at Lancing Beach.")

MainArray[MainVar++] = new Fix("2nd June 2005", "pumpupthesand.jpg", "Sand Pump", "The Beach", "Bringing in the Sand from a boat at sea.")

MainArray[MainVar++] = new Fix("2nd June 2005", "thebeautifulboats.jpg", "More Boats", "Chichester Harbour", "This is just another picture of more boats.")

MainArray[MainVar++] = new Fix("2nd June 2005", "thelongship.jpg", "A working ship", "Moving Rocks", "This is the ship that brings in all the new rocks for the replacement groins.")

MainArray[MainVar++] = new Fix("2nd June 2005", "thewindingriver.jpg", "The River Adur", "Another view", "This is a shot of our local river know as the river Adur if you have a small boat then give it a go.")

MainArray[MainVar++] = new Fix("2nd June 2005", "thegreenwalk.jpg", "Out for a Walk", "South Downs", "If you like walking then this is for you a pleasent stroll and nice views.")

MainArray[MainVar++] = new Fix("2nd June 2005", "thesunset.jpg", "The Sun Set", "More views", "This was a quick shot of the sun setting now for a long walk home.")

MainArray[MainVar++] = new Fix("2nd June 2005", "theshorelineviews.jpg", "A View from the Pier Worthing", "Sea Views", "Just a nice little pictuer along the coast line taken from the Pier.")

MainArray[MainVar++] = new Fix("2nd June 2005", "theaproachingstorm.jpg", "A storm on the way", "Stormy Weather", "Another quick shot of a storm on the way so i'm out of here.")

MainArray[MainVar++] = new Fix("2nd June 2005", "theperfectvision.jpg", "My perfect view", "Views", "I can't rember just where I took this shot but who cares I like it.")