The more I look at this, the more I think something can be done. This worked out well here in local testing -
Place this in the head of the page:
Code:
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="shortcut icon" href="favicon.ico">
<!--[if gte IE 5.5]>
<style type="text/css">
#master0 a {background:none!important;}
</style>
<![endif]-->
<script type="text/javascript" src="media/swfobject.js"></script>
<script type="text/javascr . . .
Use this fadeshow.prototype.populateslide function, replace both of your existing ones with it:
Code:
fadeshow.prototype.populateslide=function(picobj, picindex){
var slideHTML="", slideHref="";
if (this.theimages[picindex][1]!="") //if associated link exists for image
slideHref=' href="'+this.theimages[picindex][1]+'"'
slideHTML='<a'+slideHref+' target="'+this.theimages[picindex][2]+'" '+
'style="display:block;width:100%;height:100%;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+
this.postimages[picindex].src+'\');background-image:url(\''+this.postimages[picindex].src+'\');border:none;"'+
'title="'+this.theimages[picindex][3]+'"><\/a>'
picobj.innerHTML=slideHTML
}
Bookmarks