Your page is in violation of Dynamic Drive's
usage terms, which among other things, state that the script credit must appear in the source code of the
HTML page(s) using the script. Please reinstate the notice first.
To remedy the above, change this:
Code:
<script src="images.js" type="text/javascript"></script>
to:
Code:
<script src="images.js" type="text/javascript">
/***********************************************
* Ultimate Fade-In Slideshow (v1.5): © Dynamic Drive (http://www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/
</script>
Your problem is simple. you left out the #2 entry in the second array, change this:
Code:
var fadeimages2=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages2[0]=["images/photo1.jpg", "", ""]
fadeimages2[1]=["images/about2.jpg", "", ""] //<-- Where's [2]?
fadeimages2[3]=["images/about3.jpg", "", ""]
fadeimages2[4]=["images/about4.jpg", "", ""]
fadeimages2[5]=["images/about5.jpg", "", ""]
to:
Code:
var fadeimages2=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages2[0]=["images/photo1.jpg", "", ""]
fadeimages2[1]=["images/about2.jpg", "", ""]
fadeimages2[2]=["images/about3.jpg", "", ""]
fadeimages2[3]=["images/about4.jpg", "", ""]
fadeimages2[4]=["images/about5.jpg", "", ""]
Bookmarks