// 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("IMG_1196.jpg", "Friends of Mary - Seminar - 2010", "");
images[1] = new Array("IMG_1197.jpg", "Friends of Mary - Seminar - 2010", "");
images[2] = new Array("IMG_1198.jpg", "Friends of Mary - Seminar - 2010", "");
images[3] = new Array("IMG_1200.jpg", "Friends of Mary - Seminar - 2010", "");
images[4] = new Array("IMG_1201.jpg", "Friends of Mary - Seminar - 2010", "");
images[5] = new Array("IMG_1203.jpg", "Friends of Mary - Seminar - 2010", "");
images[6] = new Array("IMG_1207.jpg", "Friends of Mary - Seminar - 2010", "");
images[7] = new Array("IMG_1209.jpg", "Friends of Mary - Seminar - 2010", "");
images[8] = new Array("IMG_1210.jpg", "Friends of Mary - Seminar - 2010", "");
images[9] = new Array("IMG_1211.jpg", "Friends of Mary - Seminar - 2010", "");
images[10] = new Array("IMG_1215.jpg", "Friends of Mary - Seminar - 2010", "");
images[11] = new Array("IMG_1217.jpg", "Friends of Mary - Seminar - 2010", "");

images[12] = new Array("IMG_1218.jpg", "Friends of Mary - Seminar - 2010", "");
images[13] = new Array("IMG_1219.jpg", "Friends of Mary - Seminar - 2010", "");
images[14] = new Array("IMG_1220.jpg", "Friends of Mary - Seminar - 2010", "");
images[15] = new Array("IMG_1221.jpg", "Friends of Mary - Seminar - 2010", "");
images[16] = new Array("IMG_1223.jpg", "Friends of Mary - Seminar - 2010", "");
images[17] = new Array("IMG_1224.jpg", "Friends of Mary - Seminar - 2010", "");
images[18] = new Array("IMG_1226.jpg", "Friends of Mary - Seminar - 2010", "");
images[19] = new Array("IMG_1227.jpg", "Friends of Mary - Seminar - 2010", "");
images[20] = new Array("IMG_1228.jpg", "Friends of Mary - Seminar - 2010", "");
images[21] = new Array("IMG_1231.jpg", "Friends of Mary - Seminar - 2010", "");
images[22] = new Array("IMG_1232.jpg", "Friends of Mary - Seminar - 2010", "");
images[23] = new Array("IMG_1234.jpg", "Friends of Mary - Seminar - 2010", "");

images[24] = new Array("IMG_1238.jpg", "Friends of Mary - Seminar - 2010", "");
images[25] = new Array("IMG_1239.jpg", "Friends of Mary - Seminar - 2010", "");

// Gallery Title
var galleryTitle = "Friends of Mary - Seminar - 2010 ";

// Gallery Description
var galleryDescription = "";

// Declare variables
var currentImage = 0;

// Viewer variables
var openViewerInNewWindow = false;
var viewerWindow = "";
var viewerWindowName = "imageViewer";
var viewerWindowProperties = "width=600,height=450,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=600,height=450,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\//;