You (or your software or the host) must have done more than just copy. And there could also be other problems (tested it, looks like this is all). Anyway, there are two problems here in the source code of the page (around line #53):
Code:
<div id="fadeshow1"></div><script type="text/javascript">
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [500, 800], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["IMAG0119.jpg"],
["IMAG0247.jpg"],
["IMAG0304.jpg"],
["IMAG0389.jpg"],
["IMAG120.jpg"] //<--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: 500, //transition duration (milliseconds)
descreveal: "always",
togglerid: ""
})>
</script>
Those (highlighted) are, as you may know, HTML entities that represent quote marks. But they're not quote marks, and they have to be in order for the code to work. Also, that stray > symbol at the end of the code doesn't belong there (remove it) Change to:
Code:
<div id="fadeshow1"></div><script type="text/javascript">
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [500, 800], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["IMAG0119.jpg"],
["IMAG0247.jpg"],
["IMAG0304.jpg"],
["IMAG0389.jpg"],
["IMAG120.jpg"] //<--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: 500, //transition duration (milliseconds)
descreveal: "always",
togglerid: ""
})
</script>
Whenever you edit something like this, you should use a plain text editor like NotePad. Web editors (WYSIWYG types and others) that generate HTML code can often do this and other strange things with javascript code unless you really know how to prevent them from doing so, sometimes even when you do. There are other ways this could have happened. And it's really no big deal. But you need to figure out if possible why it happened, or at least do your best to prevent it from happening again.
I think I see why some kind of auto-correct might have done this. It assumed it was HTML text up until:
Code:
<--no trailing comma after very last image element!
which it took to be the beginning of an HTML comment. In the part that it thought was text, it converted the "'s to entities as would be proper if it weren't code. It added the > close comment mark before the next thing that it saw to be a tag. This all points to a faulty auto-correct or invalid code (mismatched tags probably and possibly missing DOCTYPE in this case). You can fix the latter (validate the code), the former would require a different editor or if it was the host, that's real trouble.
Bookmarks