// slideshowSettings.js (c)2008 SugarHill Works LLC - http://www.sugarhillworks.com ////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++;//////////// there's a weird code bug somewhere that's causing the first 2 imgs to switch order.  so i swapped the filenames to make it display correctly.imageFilenames[0] = "tg_ss01.jpg";imageFilenames[1] = "tg_ss02.jpg";imageFilenames[2] = "tg_ss03.jpg";imageFilenames[3] = "tg_ss04.jpg";imageFilenames[4] = "tg_ss05.jpg";imageFilenames[5] = "tg_ss06.jpg";imageFilenames[6] = "tg_ss07.jpg";imageFilenames[7] = "tg_ss08.jpg";imageFilenames[8] = "tg_ss09.jpg";imageFilenames[9] = "tg_ss10.jpg";imageFilenames[10] = "tg_ss11.jpg";imageFilenames[11] = "tg_ss12.jpg";imageFilenames[12] = "tg_ss13.jpg";imageFilenames[13] = "tg_ss14.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// 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...
