﻿// JavaScript Document
function correctPNG() 
{
     for(var i=0; i<document.images.length; i++)
     {
     var img = document.images[i]
     var LW=img.width
     var LH=img.height
     var imgName = img.src.toUpperCase()
     if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
     { 
           img.style.filter+="progid:DXImageTransform.Microsoft.AlphaImageLoader(src="+img.src+", sizingmethod=scale);" 
           img.src="http://images.zoshow.com/image2/files_1103/images/public/transparent.gif"
           img.width=LW
           img.height=LH
     }
     }
}

if ( $.browser.msie && $.browser.version=="6.0" ){
	window.attachEvent("onload", correctPNG);
}