// JavaScript Document
// Gallery - Image Descriptions
// Rhian Thomas - July 2004
// Copyright American Institute For Foreign Study
// This array is optional for the image gallery to work
// If an array is defined, then the number of elements in the array must match the number of images
// located in the 'large' folder associated with the image gallery
// If some images to not have a descriptions, set that element to ""

var imagetitles = new Array(
new pictureDetails("Fiji Tribal Dance", ""),
new pictureDetails("Camping in Tasmania", "A student feeds a kangaroo on a camping trip in Tasmania"),
new pictureDetails("Sailing Sydney", "Students go sailing in the Sydney Harbor"),
new pictureDetails("Parliament", ""),
new pictureDetails("Steps of Opera House", ""),
new pictureDetails("Opera House at Night", ""),
new pictureDetails("Soccer Match", "AIFS students take in a soccer match in Sydney"),
new pictureDetails("Macquarie University", "Macquarie University boasts a diverse student body made up of people from around the world"),
new pictureDetails("Students at the Harbor", ""),
new pictureDetails("Coral Reef", "Australia's Great Barrier Reef provides some of the best snorkeling in the world"),
new pictureDetails("Fiji", ""),
new pictureDetails("Harbor Bridge at Night", ""),
new pictureDetails("Students at the Harbor", ""),
new pictureDetails("Students at the Harbor", ""),
new pictureDetails("Students at the Harbor", ""),
new pictureDetails("Pedestrians", ""),
new pictureDetails("City View", "")
);