// 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("linocut1.jpg", "Memento Mori", "");
images[1] = new Array("linocut2.jpg", "Cattails", "");
images[2] = new Array("linocut3.jpg", "Portrait of Mrrranda", "");
images[3] = new Array("linocut4.jpg", "Hard-to-Hold", "");
images[4] = new Array("linocut5.jpg", "Abstract with silver ink", "");
images[5] = new Array("abstract.jpg", "Abstract 2-color print", "");
images[6] = new Array("littlegirl.jpg", "A portrait of my friend's daughter", "");
images[7] = new Array("goodboy.jpg", "A portrait of my friend's son", "");
images[8] = new Array("littleboy.jpg", "A test print of the previous image gone awry", "");
images[9] = new Array("bonemonster.jpg", "A 4-color print I created for nervousness.org", "");
images[10] = new Array("monday300x400.jpg", "Monday!", "");
images[11] = new Array("fridayprint200x300.jpg", "Self-portrait. Not my best day.", "");
images[12] = new Array("sullywan300x400.jpg", "Sullywan with bandana (created at Burning Man)", "");
images[13] = new Array("potsmanzzz350x400.jpg", "Potsal Worker catching Z's (created at Burning Man)", "");
images[14] = new Array("julia_print.jpg", "Julia Roberts has horsey teeth", "");

// Gallery Title
var galleryTitle = "Linocuts by Chris Herdt";

// Gallery Description
var galleryDescription = "The following linocuts were created by Chris Herdt between 1998 and 2004.";

// 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\//;
