<script type="text/javascript">
$(document).ready(function(e){
                        $("img[src$='png']").each(function(e){
                        if(!$.browser.msie){
                            return;
                        }else if(parseInt($.browser.version) != 6){
                            return;
                        }
                        var div = $("<div />");
                        for(var n in this.attributes){
                            if(this[n] != "" && this[n] != null){
                                if(n.substr(0,2)=="on"){                                 
                      div.bind(n.substr(2), this[n]);
                                }else if(n !=  "src"){                                   
                    div.attr(n, this[n]);
                                }
                            }
                        }
                        div.attr("style", this.style.cssText);
                        div.css({
                            width   : this.width + "px",

                            height  : this.height + "px",

                            filter  : "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "', sizingMethod='scale')"
                        });

                        if(this.align == "left"){ div.css("float", "left"); }
                        if(this.align == "right"){ div.css("float", "right"); }
                        if(this.parentNode.href){ div.css("cursor", "hand"); }
                        this.parentNode.replaceChild( div[0], this );
                        });

                    });
</script>