function fix_inline_PNGs(){
var images = $$('img'); // liste de tous les ˇlˇment <img /> du document
images.each(function(e){
var this_src = e.getProperty('src');
var this_height = e.height;
var this_width = e.width;
if (this_src.toUpperCase().contains('.PNG')){
var this_new = new Element('span', {
'styles': {
'filter': 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+this_src+'\', sizingMethod=\'scale\')',
'display': 'inline-block',
'height': this_height,
'width': this_width
}});
e.replaceWith(this_new);
}
});
}


window.addEvent('load', function() { // Garantit l'exˇcution du la fonction au bon moment!
fix_inline_PNGs();
});