That's because you have two about identical slide shows configured. Get rid of the second one, here (remove all):
Code:
var fadeimages2=new Array() //2nd array set example. Remove or add more sets as needed.
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages2[0]=["Slides/001.jpg", "", ""] //plain image syntax
fadeimages2[1]=["Slides/002.jpg", "http://www.cssdrive.com", ""] //image with link syntax
fadeimages2[2]=["Slides/003.jpg", "http://www.javascriptkit.com", "_new"] //image with link and target syntax
and here (remove red):
Code:
<script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 432, 432, 0, 3000, 1)
new fadeshow(fadeimages2, 432, 432, 0, 3000, 0)
</script>
Bookmarks