If you add the code to the html section of your CMS template as instructed then you will get javascript errors on all pages that do not actually display the slideshow. This is not an issue with sites that are not template driven.
In the Firefox javascript console the error reads...
Quote
Error: $("FrogJS") has no properties
Source File: xxx
Line: 46
Source File: xxx
Line: 46
Quote
Line: 47
Char: 3
Error: 'null' is null or not an object
Code: 0
URL: xxx
Char: 3
Error: 'null' is null or not an object
Code: 0
URL: xxx
Open frog.js
FIND:
if(!document.getElementsByTagName){ return; }
ADD BELOW:if (!$('FrogJS')){ return; }
This should fix the errors and the slideshow still works great.-=DKC=-














