I'm trying to include a cycle slideshow of gifs on my webpage. It works beautifully in Mozilla, but when I try it in IE 8, all the transparent pixels get filled with the body background color (rather than the body background image/staying transparent). I've tried adding background: transparent and background: none to the element in the IE stylesheet, but nothing's working.
*********ANSWER**********
I found the answer on another site. Apparently, to correct this issue in IE 7 and IE 8, all you have to do is add two more parameters to your cycle call:
$('.cycleClass').cycle({
fx: 'fade',
cleartype: true,
cleartypeNoBg: true
});