You could do that, essentially make the images ordinary, non-alpha channel images. Or you could get rid of the script, replace this in the head:
Code:
<script type="text/javascript" src="gradualfader.js">
/***********************************************
* Gradual Element Fader- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Visit http://www.dynamicDrive.com for hundreds of DHTML scripts
* This notice must stay intact for legal use
***********************************************/
</script>
with:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript">
jQuery(function($){
var ie8 = false;
/*@cc_on @*//*@if(@_jscript_version >= 5)if($.browser.version < 9){ie8 = true;}@end @*/
$('.gradualfader').each(function(){
if(!ie8){this.style.opacity = 0.5; return true;}
var im = this;
$(new Image()).bind('load error', function(){
im.style.width = this.width + 'px';
im.style.height = this.height + 'px';
im.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "')";
im.src = 'transparent_67_32.gif';
$(im).css({opacity: 0.5});
}).attr('src', im.src);
}).hover(function(){
$(this).stop(true, true).animate({opacity: 1});
}, function(){
$(this).stop(true, true).animate({opacity: 0.5});
});
});
</script>
Get rid of this as well:
Code:
<script type="text/javascript">
gradualFader.init() //activate gradual fader
</script>
And you'll need the image highlighted in the above code:
http://home.comcast.net/~jscheuer1/s...rent_67_32.htm
I gave it some background so you can see it to save it.
Bookmarks