Лучше будет сделать так:
Внутрь тэга head вставить:
Код:
<!--[if gte IE 5.5000]>
<script type=text/javascript src=png.js></script>
<![endif]-->
Содержание png.js такое:
Код:
function correctPNG() 
 * {
 * for(var i=0; i<document.images.length; i++)
 * * *{
 * var img = document.images[i]
 * var imgName = img.src.toUpperCase()
 * if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
 * * *{
 * var imgID = (img.id) ? "id=&#39;" + img.id + "&#39; " : ""
 * var imgClass = (img.className) ? "class=&#39;" + img.className + "&#39; " : ""
 * var imgTitle = (img.title) ? "title=&#39;" + img.title + "&#39; " : "title=&#39;" + img.alt + "&#39; "
 * var imgStyle = "display:inline-block;" + img.style.cssText 
 * if (img.align == "left") imgStyle = "float:left;" + imgStyle
 * if (img.align == "right") imgStyle = "float:right;" + imgStyle
 * if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle *
 * var strNewHTML = " * + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
 * * *+ "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
 * + "(src=\&#39;" + img.src + "\&#39;, sizingMethod=&#39;scale&#39;);\">" 
 * img.outerHTML = strNewHTML
 * i = i-1
 * * *}
 * * *}
 * }
window.attachEvent("onload", correctPNG);