// JavaScript Document


function fix_png(id,fichier) {
  // is the browser competent with the DOM?
  if(document.getElementById) {
    // is the browser capable of managing runtimeStyle?
    // (this would mean, basically, "hey, I'm IE")
    if(document.getElementById(id).runtimeStyle) {
      // delete current background
      document.getElementById(id).style.backgroundImage = 'none';
      // apply PNG background with alpha transparency filtering
      document.getElementById(id).style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://www.arthur-loyd-31.com/"+fichier+"',sizingMethod='scale',)";

    }
  }
}


