The main problem (there could be others, but fixing just this got it working here) with that page is that the imagearray isn't closed (from the page's source code, missing bracket and comma inserted highlighted and red):
Code:
<script type="text/javascript">
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [998, 433], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["1.jpg", "", "", "<span class=largetext>Stand Out from the crowd.</span> <br /><br /> <span class=smalltext>Leave your accounting worries to us</span>"],
["2.jpg", "", "", "<span class=largetext>Competent advice when you need it.</span> <br /><br /> <span class=smalltext>Receive quick responses about your organization's Financial needs</span>"],
["3.jpg", "", "", "<span class=largetext>Tailored to your needs.</span> <br /><br /> <span class=smalltext>We will discuss with you exactly what you need</span>"],
["4.jpg", "", "", "<span class=largetext>Service you can rely upon.</span> <br /><br /> <span class=smalltext> Now you can free up time to concentrate on your organization</span>"] //<--no trailing comma after very last image element! ],
],
displaymode: {type:'auto', pause:5000, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 2000, //transition duration (milliseconds)
descreveal: "peekaboo",
togglerid: ""
})
</script>
Bookmarks