// slideshowSettings.js (c)2007 SugarHill Works LLC - www.su
//
//
var imageFilenames = new Array(), gi = 0;
//
//
// --------------------------  DO NOT EDIT ABOVE THIS LINE  --------------------------
//
//
//
// INSTRUCTIONS: Lines in this file that begin with two slashes '//' are 'comments' and are ignored by the browser, but should not be ignored by you.
// Only use an HTML/JavaScript editor or PLAIN TEXT editor when editing this file. Either Notepad(PC) or TextEdit(MAC) may be used, but be sure the program is in 'plain text' or 'text only' mode.
// A simple editor for mac or pc can be downloaded from http://www.jedit.org/ or http://www.arachnoid.com/arachnophilia/.
//
// SET THE SLIDESHOW IMAGES FOLDER ON THE LINE BELOW.
//
var sPicsFolder = "slideshowImages/";//
//
// SET YOUR IMAGE FILENAMES BELOW.               
// Follow the pattern of the following lines:
// 		imageFilenames[gi+1] =  "your_filename_here.jpg";
// 		gi++;
//
//
//
//
//
// code bug makes 1st 2 images switch order; temporary fix by switching order here in file list

imageFilenames[0] = "slideshow02.jpg";

imageFilenames[1] = "slideshow01.jpg";

imageFilenames[2] = "slideshow03.jpg";

imageFilenames[3] = "slideshow04.jpg";

imageFilenames[4] = "slideshow07.jpg";

//imageFilenames[5] = "slideshow06.jpg";

//imageFilenames[6] = "slideshow07.jpg";



//
// The images will appear in the slideshow in the order listed above (regardless of filename), unless you add two slashes [ // ] to the beginning of the following line.
// Commenting the following lines will turn off the randomizing of the order.
imageFilenames.sort(randOrd);
//
//
//
//
//
// -----------------  DO NOT EDIT BELOW THIS LINE  --------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// **************************************************************************
// **************************************************************************
// ******************** SET YOUR IMAGE FILENAMES ABOVE **********************
// **************************************************************************
// **************************************************************************
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// -----------------  DO NOT EDIT BELOW THIS LINE  --------------------------
//
//
//
//
//
//
// DO NOT EDIT THESE varS. CHANGE/ADD IMAGE AND THUMBNAIL FILENAMES IN THE PREVIOUS SECTION
// 
//rem->//var rootPth = ""; // relative path from this portfolio to the website"s root directory
imageFilenames[imageFilenames.length] = imageFilenames[0];// populate the 0 index for some reason...





