The only potential problems I see there are the two versions of jQuery + the addition of the jQuery UI.
Try it without those, see if that fixes it. Get rid of:
Code:
<script src="jquery-ui-1.7.2/js/jquery-1.3.2.min.js" type="text/javascript"></script>
<script src="jquery-ui-1.7.2/js/jquery-ui-1.7.2.min.js" type="text/javascript"></script>
and any code that depends upon those.
If that fixes it, we will need to find and correct the conflict.
Either way, I need to see a demo of the problem, and know what to do, in what browser, to duplicate the problem. There's nothing to fix on that page. I made a copy with:
Code:
<script type="text/javascript">
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [515, 297], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["images/banner1.jpg", "","", "Description of image here"],
["images/banner2.jpg", "","", "Description of image here"],
["images/banner3.jpg", "","", "Description of image here"],
["images/banner4.jpg", "","", "Description of image here"],
["images/banner5.jpg", "","", "Description of image here"],
["images/banner6.jpg", "","", "Description of image here"],
["images/banner7.jpg", "","", "Description of image here"] //<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 900, //transition duration (milliseconds)
descreveal: "always",
togglerid: ""
})
</script>
And as far as I can tell, there's nothing to fix on that page either. Please put up a separate page that shows the problem and tell me exactly what I have to do, and in what browser, to duplicate the problem.
Bookmarks