// 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("DSC04423.jpg", "Yuvajyothi Seminar - 2010 ", "");
images[1] = new Array("DSC04427.jpg", "Yuvajyothi Seminar - 2010 ", "");
images[2] = new Array("DSC04428.jpg", "Yuvajyothi Seminar - 2010 ", "");
images[3] = new Array("DSC04430.jpg", "Yuvajyothi Seminar - 2010 ", "");
images[4] = new Array("DSC04432.jpg", "Yuvajyothi Seminar - 2010 ", "");
images[5] = new Array("DSC04433.jpg", "Yuvajyothi Seminar - 2010 ", "");
images[6] = new Array("DSC04435.jpg", "Yuvajyothi Seminar - 2010 ", "");
images[7] = new Array("DSC04437.jpg", "Yuvajyothi Seminar - 2010 ", "");
images[8] = new Array("DSC04439.jpg", "Yuvajyothi Seminar - 2010 ", "");
images[9] = new Array("DSC04440.jpg", "Yuvajyothi Seminar - 2010 ", "");
images[10] = new Array("DSC04441.jpg", "Yuvajyothi Seminar - 2010 ", "");

images[11] = new Array("DSC04442.jpg", "Yuvajyothi Seminar - 2010 ", "");
images[12] = new Array("DSC04443.jpg", "Yuvajyothi Seminar - 2010 ", "");
images[13] = new Array("DSC04444.jpg", "Yuvajyothi Seminar - 2010 ", "");
images[14] = new Array("DSC04445.jpg", "Yuvajyothi Seminar - 2010 ", "");
images[15] = new Array("DSC04447.jpg", "Yuvajyothi Seminar - 2010 ", "");
images[16] = new Array("DSC04451.jpg", "Yuvajyothi Seminar - 2010 ", "");



// Gallery Title
var galleryTitle = "Yuvajyothi 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\//;
