/*******************************************************************************

FILE: pctslidesetup.js
AUTHOR: Lee Vine
VERSION: 1.0 - initial public release
DATE: 10/13/2007

--------------------------------------------------------------------------------

This file is part of the PCT Slide Show.
It contains the photo names, photo folder name,
and other things to be set by the user

It is free for anyone to use, but this header MUST be
included, and may not be modified.

*******************************************************************************/

var photos = new Array(), pi=0;

/*************************************************
Photo names listed below.
Cannot have apostrophes in photo names
*************************************************/

photos[pi++] = 'blind01.jpg';
photos[pi++] = 'blind02.jpg';
photos[pi++] = 'blind03.jpg';
photos[pi++] = 'blind04.jpg';
photos[pi++] = 'blind05.jpg';
photos[pi++] = 'blind06.jpg';

/*************************************************
Folder that photos are in
*************************************************/
var photofolder = 'blindimages';

/*************************************************
Alt tag for images
*************************************************/
var alt = 'Jason Vaughn';

/*************************************************
Photos must be same width, but height may vary
*************************************************/
var photowidth = 600;

/*************************************************
Number of pixels to move photo each slide (must be whole number)
Smaller number = smoother slide
This number affects the speed of the slideshow MUCH more than the delay
*************************************************/
var slideincrement = 15;

/*************************************************
Delay in milliseconds before moving photo again (must be whole number)
Smaller number = faster slide
*************************************************/
var delay = 2;
