// SuzyCategory:  Add your new category names.  Be sure to leave in the 'all' category!
SuzyCategory = new Array("all", "General",  "Facilities",  "Rooms")

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("10/10/2004", "photo/front-view.jpg", "Front View", "General", "")
MainArray[MainVar++] = new Fix("10/10/2004", "photo/side-view.jpg", "Side View", "General", "")
MainArray[MainVar++] = new Fix("10/10/2004", "photo/front.jpg", "Hotel Front Desk", "General", " ")
MainArray[MainVar++] = new Fix("10/10/2004", "photo/lobby.jpg", "Hotel Lobby", "General", " ")
MainArray[MainVar++] = new Fix("10/10/2004", "photo/pool.jpg", "Swimming Pool", "Facilities", " ")
MainArray[MainVar++] = new Fix("10/10/2004", "photo/coffee.jpg", "Coffee Garden", "General", "")
MainArray[MainVar++] = new Fix("10/10/2004", "photo/restaurant2.jpg", "Yuen-Yuen Chinese Restaurant", "General", " ")
MainArray[MainVar++] = new Fix("10/10/2004", "photo/astana2.jpg", "Astana Wedding Setting", "Facilities", "")
MainArray[MainVar++] = new Fix("10/10/2004", "photo/perdana.jpg", "Perdana - Meeting Setting", "Facilities", " ")
MainArray[MainVar++] = new Fix("10/10/2004", "photo/meeting.jpg", "Meeting Room", "Facilities", " ")
MainArray[MainVar++] = new Fix("10/10/2004", "photo/boardroom.jpg", "Boardroom", "Facilities", "")
MainArray[MainVar++] = new Fix("10/10/2004", "photo/facisauna.jpg", "Fitness Center - Sauna", "Facilities", "")
MainArray[MainVar++] = new Fix("10/10/2004", "photo/facisteam.jpg", "Fitness Center - Steam Bath", "Facilities", "")
MainArray[MainVar++] = new Fix("10/10/2004", "photo/roomdeluxe.jpg", "Deluxe Room", "Rooms", " ")
MainArray[MainVar++] = new Fix("10/10/2004", "photo/roomexe2.jpg", "Executive Suite", "Rooms", " ")
MainArray[MainVar++] = new Fix("10/10/2004", "photo/roomexe.jpg", "Executive Room", "Rooms", " ")