function fixPNGs () {

  
// ****** MALDITO IE6 START

    var isIE= false /*@cc_on || true @*/;
    var isIE6= isIE /*@cc_on && !!(!window.XMLHttpRequest && document.compatMode) @*/;

    function fixPNG (img) {
      img.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=" + img.src + ", sizingMethod='scale')";
      var src= img.src;
      img.src= src.substring(0, src.indexOf('.png'))+ ".gif";
    }

    if (isIE6) {
      //alert("IE6");
      var pngs= document.getElementsByTagName('IMG');
      var e, n= pngs.length;
      while (n--) {
        ((e= pngs[n]).src.indexOf('.png') >= 0) && fixPNG(e);
      }
    }
    
  
// ****** MALDITO IE6 END

}
