hi friends
This plugin will fix the missing PNG-Transparency in Microsoft Internet Explorer 5.5 & 6.
1. download
2. Add jQuery and pngFix to the HEAD-Section of your HTML …
<head>
...
<script type="text/javascript" src="jquery-latest.pack.js"></script>
<script type="text/javascript" src="jquery.pngFix.js"></script>
...
</head>
3. Activate pngFix on document.ready
<head>
...
<script type="text/javascript">
$(document).ready(function(){
$(document).pngFix();
});
</script>
...
</head>