// imageArray.js
// Variables to control the Image Gallery (index, viewer, slideshow)

// Declare image array
// Format: filename, description/alt text, URL
var images = new Array();
images[0] = new Array("DSC_0009.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[1] = new Array("DSC_0010.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[2] = new Array("DSC_0011.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[3] = new Array("DSC_0012.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[4] = new Array("DSC_0013.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[5] = new Array("DSC_0014.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[6] = new Array("DSC_0015.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[7] = new Array("DSC_0016.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[8] = new Array("DSC_0017.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[9] = new Array("DSC_0018.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[10] = new Array("DSC_0019.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[11] = new Array("DSC_0020.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");

images[12] = new Array("DSC_0021.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[13] = new Array("DSC_0022.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[14] = new Array("DSC_0023.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[15] = new Array("DSC_0024.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[16] = new Array("DSC_0025.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[17] = new Array("DSC_0026.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[18] = new Array("DSC_0027.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[19] = new Array("DSC_0028.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[20] = new Array("DSC_0029.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[21] = new Array("DSC_0030.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");

images[22] = new Array("DSC_0031.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[23] = new Array("DSC_0032.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[24] = new Array("DSC_0033.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[25] = new Array("DSC_0034.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");
images[26] = new Array("DSC_0035.JPG", "H.G Dr. Thomas Mar Kooriloos, Sept 2009, KWT", "");



// Gallery Title
var galleryTitle = "H.G Tomas Mar Kooriloos MASS Sept:. 2009";

// Gallery Description
var galleryDescription = "";

// Declare variables
var currentImage = 0;

// Viewer variables
var openViewerInNewWindow = false;
var viewerWindow = "";
var viewerWindowName = "imageViewer";
var viewerWindowProperties = "width=630,height=515,toolbars=no,status=no";
var numOfThumbs = 5;
var center = 3;
var highlightColorOn = "yellow";
var highlightColorOff = "white";

// Slideshow variables
var openSlideshowInNewWindow = false;
var slideshowWindow = "";
var slideshowWindowName = "imageSlideshow";
var slideshowWindowProperties = "width=630,height=480,toolbars=no,status=no";
var delay = 4000;
var fadeTime = 500;
var paused = false;


// FILE LOCATIONS

// The name of the image directory
var imageDir = "images";

// The name of the navigation image directory
var navDir = "nav";

// The name of the thumbnail image directory
var thumbDir = "thumbs";
var thumbRegExp = /thumbs\//;