Some of the images are missing - the script depends upon all of the images being present.
You're missing the loading image. It's configured incorrectly in the frog5.js file:
Code:
//-------------------------------------------------------------
// FrogJS v.1.1
// Created by Eric Puidokas (www.puidokas.com)
//
// Licensed under the Creative Commons Attribution 2.5 License
// (http://creativecommons.org/licenses/by/2.5/)
//-------------------------------------------------------------
// CONFIGURATION VARIABLES
var thumbTop = '60px'; // distance you want you thumbnails to be from the top of their container
var loadingAni = '/client/Dakota_Indian_Founda_KA4F8J/Images/loading.gif'; // image displayed when preloading images
var scalePercent = '300'; // percent thumbnails expand when fading into main image
var mouseoverpause = true; // set true to allow full user interaction onmouseover, false for limited-interactive gallery
// Note - Gallery will pause onmouseover of t . . .
That should be:
Code:
//-------------------------------------------------------------
// FrogJS v.1.1
// Created by Eric Puidokas (www.puidokas.com)
//
// Licensed under the Creative Commons Attribution 2.5 License
// (http://creativecommons.org/licenses/by/2.5/)
//-------------------------------------------------------------
// CONFIGURATION VARIABLES
var thumbTop = '60px'; // distance you want you thumbnails to be from the top of their container
var loadingAni = '/Images/loading.gif'; // image displayed when preloading images
var scalePercent = '300'; // percent thumbnails expand when fading into main image
var mouseoverpause = true; // set true to allow full user interaction onmouseover, false for limited-interactive gallery
// Note - Gallery will pause onmouseover of t . . .
These scripts are giving errors (from the head of the page):
Code:
<script src="./prototype.js" type="text/javascript"> </script>
<script src="./scriptaculous.js?load=effects" type="text/javascript"> </script>
<script src="./frog5.js" type="text/javascript"> </script>
I found that if I replaced the first two with these hosted versions:
Code:
<script src="http://ajax.googleapis.com/ajax/libs/prototype/1.7.1.0/prototype.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/scriptaculous.js?load=effects"></script>
<script src="./frog5.js" type="text/javascript"> </script>
The errors went away and the gallery displayed. The missing images (and/or perhaps something else) prevented it from working though.
One other tip about the missing images:
Code:
Images/Ride/ride1.jpg
is not the same as:
Code:
images/Ride/ride1.jpg
or:
Code:
Images/ride/ride1.jpg
In other words, upper and lower case letters matter on the web.
So make sure all of the images are present, including fixing the path to the loading image. Perhaps start out with just six images or so. And make the changes as shown for the scripts.
The browser cache may need to be cleared and/or the page refreshed to see changes.
There could also be other problems. But get that much done. If it works, great! If not, revise the live page so we can have a look at it to see what else it might need.
However, I found that after making the above changes and then changing all of he larger images to:
Code:
Images/Ride/ride1.jpg
and all of the thumbnails to:
Code:
Images/Ride/ride1_thumb.jpg
After that, the gallery worked.
Bookmarks