You missed one:
Code:
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow_paul",
dimensions: [120, 120],
imagearray: [
["paul_1.JPG", "", "", "Paul Brookes"],
["paul_2.JPG", "", "", "for Square Foot"],
["paul_3.JPG", "", "", "London"]
],
displaymode: {type:'auto', pause:2200, cycles:0, wraparound:false},
fadeduration: 990,
descreveal: "ondemand",
})
By the way, my other suggestion about:
Code:
<script type="text/javascript"><![endif]-->3.
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
was incorrect. I fixed it here and in my previous post. Get rid of all of the highlighted in it including the 3. bit.
On yet another front, having:
9 times is redundant. In this particular script it won't hurt anything, at least not the way you are using the script. But they should each be unique names (mygallery1, mygallery2, etc.). Or you can just remove them all (example):
Code:
new fadeSlideShow({
wrapperid: "fadeshow_scie",
dimensions: [120, 120],
imagearray: [
["scie_1.JPG", "", "", "Associated A"],
["scie_2.jpg", "", "", "RO St Bernards"],
["scie_3.jpg", "", "", "Jewellery Quarter"]
],
displaymode: {type:'auto', pause:2150, cycles:0, wraparound:false},
fadeduration: 910,
descreveal: "ondemand"
})
Bookmarks