// SLIDVID
// By Jim Andrews, January 2010, version 1.1

// Customize these values.

var gSeriesTitle="Faces"
//This specifies the title of the series.
var gLastFile=15
//This specifies how many image files there are.
//The image file names must be 1, 2, ... gLastFile
var gImagePrefix="images/"
//Specifies the path to the images relative to the
//location of index.htm.
var gImageExtension=".jpg"
//All the image files must have the same extension.
var gDisplayPeriod=3000
//How long each image is displayed after the
//fade in is completed (in ms).
var gFadeTime=6000
//How long to fade in/out each image (in ms)
var gFadeOut=1
//A boolean that specifies whether the transition between
//images is a fade in/out of two images or just a fade in
//of one image. If the latter, then all the images should
//be the same size so you don't get edges showing.
var gNumberOfIcons=15
//The number of icons. Sometimes you have too many images
//to display an icon for each one. In this case, you can
//display icons like 1, 5, 10, ... gLastFile
var gIconIncrement=1
//If gIconIncrement=3, for instance, then you have gNumberOfIcons
//named 1, 3, 6, 9,... 
var gThumbColumns=5
//Number of columns in the thumbnails table
var gCellSpacing=5
//Cellspacing property in the thumbnails table
var gIconExtension=".gif"
//All the icon files must have the same extension.
//And they must be named 1, 2, ... gLastFile.
var gIconPrefix="icons/"
//Specifies the path to the folder that contains the icons.
//Relative to the location of index.htm.
var gBackgroundImage="5.jpg"
//Specifies the image to use as background behind the thumbs.
//Or "" for none.
var gTitle1Link="info.htm"
//Link we go to when user clicks title1, which is top left when
//the thumbnails are displayed. "" for no link.
var gTitle1Target="_self"
//Target window for the above link.
var gTitle1Help="Click for information about this series"
//Help text for the title1 mouseover
var gTitle2Link="info.htm"
//Link we go to when user clicks title2, which is top left when
//the slideshow is displayed. "" for no link.
var gTitle2Target="_self"
//Target window for the title2 link.
var gTitle2Help="Click for information about this series"
//Help text for the title2 mouseover.
var gDisplayLogo=1
//A boolean that specifies whether the dbCinema logo should
//be displayed.
var gNotes=[]
//gNotes is an array of strings. one string for each of the
//gLastFile images. gNotes[i] is displayed in the slideshow
//when image i+1 is displayed. If you don't have notes to 
//display, don't worry about making gNotes long enough.
//If it isn't long enough, the program pads it out.
