function fixPNGs() {
	if (window.ie55up){	
		for (var i = document.images.length - 1, img = null; (img = document.images[i]); i--) {
			if (img.src.match(/\alpha.png$/i) != null) {
				fixPNG(img);				
			}
			img.style.visibility = "visible";
		}	
	}
}


function fixPNG(myImage){
	if (window.ie55up){		
		var imgID = (myImage.id) ? "id='" + myImage.id + "' " : "";
		var imgClass = (myImage.className) ? "class='" + myImage.className + "' " : "";
		var imgTitle = (myImage.title) ? "title='" + myImage.title + "' " : "title='" + myImage.alt + "' ";
		var imgStyle = "display:inline-block;" + myImage.style.cssText;
		var strNewHTML = "<span " + imgID + imgClass + imgTitle;
		strNewHTML += " style=\"" + "width:" + myImage.width + "px; height:" + myImage.height + "px;" + imgStyle + ";";
		strNewHTML += "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader";
		strNewHTML += "(src=\'" + myImage.src + "\', sizingMethod='scale');\"></span>";
		myImage.outerHTML = strNewHTML;				
	}
}