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

// Customize these values.

var gSeriesTitle="Sunset"
//This specifies the title of the series.
var gLastFile=24
//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=0
//How long each image is displayed after the
//fade in is completed (in ms).
var gFadeTime=5000 
//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=24
//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=6
//Number of columns in the thumbnails table
var gCellSpacing=4
//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=""
//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="Draws from a Google image search of \"sunset\""
//Help text for the title1 mouseover
var gTitle2Link=""
//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="Draws from a Google image search of \"sunset\""
//Help text for the title2 mouseover.
var gDisplayLogo=0
//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.
