In order to set the opacity of a transparent PNG image, you need to use the AlphaImageLoader
filter, even in IE8.
EDIT: You also need to add the alpha
filter in the CSS, like this:
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="path", sizingMethod="scale"),alpha(opacity=100);
Otherwise, jQUery will clear the existing filter as it adds the alpha
filter.