// LastUpdated: By moving this function here, the date will update on your web page whenever you add images.
function LastUpdated() {
	document.write("This photo gallery currently has  " + MainVar + "  photos and was last modified on  " + document.lastModified +".");
}

// SuzyCategory:  Add your new category names.  Be sure to leave in the 'all' category!
SuzyCategory = new Array("all", "scott", "susan", "rainlin", "dylan", "rainlin_and_dylan", "formal", "kids", "family", "friends", "jabba", "sebastian", "blankets", "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(" ", "boys_reading_display.jpg", "Display","family","There are continuously changing displays featuring photo galleries, author information, coming events, special themes and student work.")
MainArray[MainVar++] = new Fix(" ", "wider_reading.jpg", "Reading Area","family","There is a reading area used by English classes from year 7-10 and available for recreational purposes at other times.")
MainArray[MainVar++] = new Fix(" ", "movie_night.jpg", "Literature Club Movie Night","family","Literature Club is for boys who are readers, interested in cultural activities or who aspire to be better informed about the arts")
MainArray[MainVar++] = new Fix(" ", "harry_potter_week.jpg", "Special Event","family"," ")
MainArray[MainVar++] = new Fix(" ", "library_auxiliary.jpg", "Library Auxiliary Working-bee","family","The Auxialiary fundraises for 'extras' to help our boys in the Resource Centre and encourages parent to come together in relaxed social settings.")
MainArray[MainVar++] = new Fix(" ", "quiz.jpg", "Quizzes","family","")
MainArray[MainVar++] = new Fix(" ", "literature_circles_for_parents.jpg", "Literature Circles for Parents","family","Literature Circles for Parents provides an opportunity for parents and teachers with an interest in reading, to come together in an informal setting.")
MainArray[MainVar++] = new Fix(" ", "author_signings.jpg", "Author Signings","family","")
MainArray[MainVar++] = new Fix(" ", "book_reviews.jpg", "Book Reviews","family","Books reviewed by students and staff are displayed in the library.")
MainArray[MainVar++] = new Fix(" ", "publishers_expo.jpg", "Publishers Expo","family","")
MainArray[MainVar++] = new Fix(" ", "great_debate.jpg", "Great Debate","family","The staff and student go head to head")
MainArray[MainVar++] = new Fix(" ", "boys_in_library.jpg", "Debate Preparation","family","")
MainArray[MainVar++] = new Fix(" ", "happy_library_users.jpg", "Laptop Users","family","Computers, scanners and printers are available, along with wire and wireless network access.")
MainArray[MainVar++] = new Fix(" ", "boys_at_dvds.jpg", "DVD Collection","family","Videos and DVDs may be borrowed overnight or over the weekend.")
