//Instructions for Editing  01 (Q)
//There are 3 rotating arrays/stacks: Left, Right, and Middle
//There are 3 key control elements for each array/stack: gSlideshowInterval, gNumberOfImages, and gImages. We append each with Left, Middle, or Right respectively.
//gSlideshowInterval=How fast the rotation should occur in seconds. This is currently set to 5.
//gNumberofImages=How many total images are in array/stack. This is currently set to 2 for stores and 6 for fashion/lifestyle.
//gImages[x]=The specific image name including its relative file path. We must start at 0.


//Update Image
//Place image in the proper folder. If you want to keep the same filename, save as an existing file name. 
//If the filename is different, save it and then edit the correct array element and replace the old filename with the new one.
//Example: New Store Image is BDSConceptStore.jpg. Save this to Images/Rotation/BDS folder. Retain the filename.
//Edit gImagesLeft[0]="Images/Rotation/BDS/BDSConceptStore.jpg";

//Add Additional Image & Element to Array
//Place image in the proper folder. Increment the gNumberofImages variable by 1. Add new gImages[x+1] element.
//Example: New Store Image is BDSConceptStore.jpg. Save this to Images/Rotation/Stores folder. Retain the filename.
//If gNumberOfImagesLeft = 2 then increment it by 1 (gNumberOfImagesLeft = 3;).
//Create a new gImagesLeft array element gImagesLeft[2] = "Images/Rotation/Stores/BDSConceptStore.jpg";

gSlideshowIntervalLeft = 4;
gNumberOfImagesLeft = 5;
gSlideshowIntervalMiddle = 4;
gNumberOfImagesMiddle = 5;
gSlideshowIntervalRight = 5;
gNumberOfImagesRight = 5;

gImagesLeft = new Array(gNumberOfImagesLeft);
gImagesLeft[0] = "Images/Rotation/BDS/BeallsDeptStore.jpg";
gImagesLeft[1] = "Images/Rotation/BDS/X-mas2.jpg";
gImagesLeft[2] = "Images/Rotation/BDS/X-mas3.jpg";
gImagesLeft[3] = "Images/Rotation/BDS/X-mas4.jpg";
gImagesLeft[4] = "Images/Rotation/BDS/X-mas5.jpg";

gImagesMiddle = new Array(gNumberOfImagesMiddle);

gImagesMiddle[0] = "Images/Rotation/FashionLifeMiddle/Buckeye.jpg";
gImagesMiddle[1] = "Images/Rotation/FashionLifeMiddle/Outletfamily1.jpg";
gImagesMiddle[2] = "Images/Rotation/FashionLifeMiddle/fisherman rs.jpg";
gImagesMiddle[3] = "Images/Rotation/FashionLifeMiddle/11-Postholiday.jpg";
gImagesMiddle[4] = "Images/Rotation/FashionLifeMiddle/07-Postholiday.jpg";


gImagesRight = new Array(gNumberOfImagesRight);
gImagesRight[0] = "Images/Rotation/FashionLifeRight/Burkes.jpg";
gImagesRight[1] = "Images/Rotation/FashionLifeRight/golfer.jpg";
gImagesRight[2] = "Images/Rotation/FashionLifeRight/X-mas11.jpg";
gImagesRight[3] = "Images/Rotation/FashionLifeRight/jeans.jpg";
gImagesRight[4] = "Images/Rotation/FashionLifeRight/05-Postholiday.jpg";
