This is your problem (around line 73 in your page's source code):
Code:
<style type="text/css">
img { behavior: url("pngfix.htc"); }
</style>
Since this is only required and effective in IE 5.5 through IE 6, you can fix IE 7 and greater by doing it like so (additions highlighted):
Code:
<!--[if lt IE 7]>
<style type="text/css">
img { behavior: url("pngfix.htc"); }
</style>
<![endif]-->
That would leave IE 6 and less which will still have this issue. To address that, add the highlighted to your on page script code for the slide show:
Code:
<script type="text/javascript">
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [760, 75], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["aa1.jpg", "", "", ""],
["aa2.jpg", "", "", ""],
["aa3.jpg", "", "", ""],
["aa4.jpg", "", "", ""],
["aa5.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: "ondemand",
togglerid: "",
oninit: function(){
/*@cc_on @*/
/*@if(@_jscript_version >= 5)
var v = navigator.appVersion.match(/MSIE (\d)/);
if(v && v[1] && v[1] < 7){
this.showslide(0);
}
@end @*/
}
})
</script>
Be sure not to miss the added comma (red) after togglerid: "".
Bookmarks