// where are the images located?
var baseImgDir = "i/tmp/";


// how are the files named?
// 
// for example, assuming imgPrefix = 'front-' & imgExt = '.jpg',
// files for the top right image should be named 'front-tr-1.jpg' 
// & files for the bottom left image should be named 'front-bl-1.jpg' 
// 
// NOTE: do not zero pad the numbers in the file names (1, not 01 or 001)
var imgPrefix = "front-";
var imgExt = ".jpg";

// how many images are there for the top left section?
var trMax = 8;
// how often should it change (in miliseconds)
var trInterval = 5000;
// how soon should it start after the page loads (in miliseconds). 0 = immediately
var trOffset = 0;

// how many images are there for the bottom right section?
var blMax = 8;
// how often should it change (in miliseconds)
var blInterval = 5000;
// how soon should it start after the page loads (in miliseconds). 0 = immediately
var blOffset = 1250;


// for best results, both Intervals should be the same,
// and one Offset should be 0, while the other should be half of the Intervals
