$(document).ready(function($) {
  $.ifixpng('/images/pixel.gif');
  $('img[src$=.png]').each(function() {
    if ($(this)[0].complete) {
      $(this).ifixpng();
    } else {
      $(this).load(function(){$(this).ifixpng();})
    }
  })
});

