<!--[if lt IE 7]>
 function alphaBackgrounds(){
   var rslt = navigator.appVersion.match(/MSIE (\d+\.\d+)/, '');
   var itsAllGood = (rslt != null && Number(rslt[1]) >= 5.5 && Number(rslt[1]) < 7);
   for (i=0; i<document.all.length; i++){
     var bg = document.all[i].currentStyle.backgroundImage;     
     if (itsAllGood && bg){
       if (bg.match(/\.png/i) != null){
		 if (bg.match(/\home-gradient.png/i) == null && bg.match(/\interior-right-side.png/i) == null && bg.match(/\bar-gradient.png/i) == null && bg.match(/\interior-leftnav-header.png/i) == null && bg.match(/\interior-leftnav-footer.png/i) == null) {
			 var mypng = bg.substring(5, bg.length-6);
			 document.all[i].style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+mypng+".png', sizingMethod='scale')";
			 document.all[i].style.backgroundImage = "URL('../images/x.gif')";
		 }
       }
     }
   }
}

window.attachEvent("onload", alphaBackgrounds);
<!--<![endif]-->